// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct CreateCustomReferenceResponse: Codable, Equatable, Identifiable {
    public var createdAt: String
    public var id: String
    public var name: String
    public var status: String

    public init(createdAt: String, id: String, name: String, status: String) {
        self.createdAt = createdAt
        self.id = id
        self.name = name
        self.status = status
    }
}
