/* Options: Date: 2025-05-06 15:48:30 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: OwnerCardsSoldSearchRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/OwnerCards/Sold", Verbs="POST") open class OwnerCardsSoldSearchRequest : IReturn { var ownerId:Int? = null var includeInvalid:Boolean? = null companion object { private val responseType = OwnerCardsSoldSearchResult::class.java } override fun getResponseType(): Any? = OwnerCardsSoldSearchRequest.responseType } open class OwnerCardsSoldSearchResult { var items:ArrayList = ArrayList() var statusCode:Int? = null var message:String? = null } open class OwnerCards { var id:Int? = null var ownerId:Int? = null var ownerCardTypeId:Int? = null var phoneVerificationId:Int? = null var initialMaxTickets:Int? = null var currentAvailableTickets:Int? = null var timeStampCreatedUTC:Date? = null var timeStampLastChangedUTC:Date? = null var timeStampBoughtUTC:Date? = null var timeStampOrderedUTC:Date? = null var cardValidFromUTC:Date? = null var cardValidToUTC:Date? = null var hasStoreCredit:Boolean? = null var cardPrice:BigDecimal? = null var pricePaid:BigDecimal? = null var initialStoreCredit:BigDecimal? = null var currentStoreCredit:BigDecimal? = null var phoneFullVerificationNumber:String? = null var holderId:String? = null var holderName:String? = null var holderEmail:String? = null var cardPriceCurrency:String? = null var pricePaidCurrency:String? = null var deviceId:String? = null var paymentMethodId:String? = null var paymentReference:String? = null var phoneVerificationNumber:String? = null var paymentPhoneNumber:String? = null var paymentId:String? = null var paymentStatus:String? = null var paymentTokenId:String? = null var maxTicketsPerEvent:Int? = null var multiplePaymentsId:String? = null var imageUrl:String? = null var backgroundImageUrl:String? = null }