/* Options: Date: 2025-06-27 00:26:42 SwiftVersion: 5.0 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: TeamPassTypeSingleAddChangeRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/TeamPassTypes/PassType") public class TeamPassTypeSingleAddChangeRequest : IReturn, Codable { public typealias Return = TeamPassTypeSingleResult public var passType:TeamPassType? public var requestUnixUTCTimeStamp:Int? public var signature:RequestSignature? required public init(){} } public class TeamPassTypeSingleResult : Codable { public var passType:TeamPassType? public var statusCode:Int? public var message:String? required public init(){} } public class RequestSignature : Codable { public var systemId:String? public var systemSecret:String? public var signature:String? required public init(){} } public class TeamPassType : Codable { public var id:Int? public var name:String? public var price:Double? public var seriesId:Int? public var ownerId:Int? public var seriesTicketType:Int? public var seriesOwnerTicketType:Int? public var isActive:Bool? public var onlyForTeamUse:Bool? public var timestampCreated:Date? public var timestampLastChanged:Date? required public init(){} }