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

import Foundation

public struct StudioVersionStateSchema: Codable, Equatable, Identifiable {
    public var createdAt: Date
    public var id: String
    public var projectId: String
    public var state: AnyJSON

    public init(createdAt: Date, id: String, projectId: String, state: AnyJSON) {
        self.createdAt = createdAt
        self.id = id
        self.projectId = projectId
        self.state = state
    }
}
