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

import Foundation

public struct StudioInvitationCodeSchema: Codable, Equatable {
    public var code: String
    public var count: Int
    public var redeemedCount: Int

    public init(code: String, count: Int, redeemedCount: Int) {
        self.code = code
        self.count = count
        self.redeemedCount = redeemedCount
    }
}
