/* Options: Date: 2025-05-06 14:25:50 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: VenueOwnerTicketTypeConnectionCreateRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/VenueOwnerTicketTypeConnection", "POST") public class VenueOwnerTicketTypeConnectionCreateRequest : IReturn, Codable { public typealias Return = VenueOwnerTicketTypeConnectionResult public var item:VenueOwnerTicketTypeConnection? required public init(){} } public class VenueOwnerTicketTypeConnectionResult : Codable { public var item:VenueOwnerTicketTypeConnection? public var statusCode:Int? public var message:String? required public init(){} } public class VenueOwnerTicketTypeConnection : Codable { public var id:Int? public var venueSeatingSectionId:Int? public var ownerTicketId:Int? public var maxTickets:Int? public var venueId:Int? required public init(){} }