/* Options: Date: 2025-05-06 13:56:49 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: EventOwnerTicketTypeToCardConnectionSearchRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/EventOwnerTicketTypeToCardConnections", "POST") public class EventOwnerTicketTypeToCardConnectionSearchRequest : IReturn, Codable { public typealias Return = EventOwnerTicketTypeToCardConnectionSearchResult public var cardTypeId:Int? public var ticketTypeId:Int? required public init(){} } public class EventOwnerTicketTypeToCardConnectionSearchResult : Codable { public var items:[EventOwnerTicketTypeToCardConnection] = [] public var statusCode:Int? public var message:String? required public init(){} } public class EventOwnerTicketTypeToCardConnection : Codable { public var id:Int? public var ownerCardTypeId:Int? public var ownerTicketTypeId:Int? public var active:Bool? required public init(){} }