/* Options: Date: 2025-05-06 16:33:00 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: OwnerCardsSoldSearchRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class OwnerCards implements IConvertible { int? id; int? ownerId; int? ownerCardTypeId; int? phoneVerificationId; int? initialMaxTickets; int? currentAvailableTickets; DateTime? timeStampCreatedUTC; DateTime? timeStampLastChangedUTC; DateTime? timeStampBoughtUTC; DateTime? timeStampOrderedUTC; DateTime? cardValidFromUTC; DateTime? cardValidToUTC; bool? hasStoreCredit; double? cardPrice; double? pricePaid; double? initialStoreCredit; double? currentStoreCredit; String? phoneFullVerificationNumber; String? holderId; String? holderName; String? holderEmail; String? cardPriceCurrency; String? pricePaidCurrency; String? deviceId; String? paymentMethodId; String? paymentReference; String? phoneVerificationNumber; String? paymentPhoneNumber; String? paymentId; String? paymentStatus; String? paymentTokenId; int? maxTicketsPerEvent; String? multiplePaymentsId; String? imageUrl; String? backgroundImageUrl; OwnerCards({this.id,this.ownerId,this.ownerCardTypeId,this.phoneVerificationId,this.initialMaxTickets,this.currentAvailableTickets,this.timeStampCreatedUTC,this.timeStampLastChangedUTC,this.timeStampBoughtUTC,this.timeStampOrderedUTC,this.cardValidFromUTC,this.cardValidToUTC,this.hasStoreCredit,this.cardPrice,this.pricePaid,this.initialStoreCredit,this.currentStoreCredit,this.phoneFullVerificationNumber,this.holderId,this.holderName,this.holderEmail,this.cardPriceCurrency,this.pricePaidCurrency,this.deviceId,this.paymentMethodId,this.paymentReference,this.phoneVerificationNumber,this.paymentPhoneNumber,this.paymentId,this.paymentStatus,this.paymentTokenId,this.maxTicketsPerEvent,this.multiplePaymentsId,this.imageUrl,this.backgroundImageUrl}); OwnerCards.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; ownerId = json['ownerId']; ownerCardTypeId = json['ownerCardTypeId']; phoneVerificationId = json['phoneVerificationId']; initialMaxTickets = json['initialMaxTickets']; currentAvailableTickets = json['currentAvailableTickets']; timeStampCreatedUTC = JsonConverters.fromJson(json['timeStampCreatedUTC'],'DateTime',context!); timeStampLastChangedUTC = JsonConverters.fromJson(json['timeStampLastChangedUTC'],'DateTime',context!); timeStampBoughtUTC = JsonConverters.fromJson(json['timeStampBoughtUTC'],'DateTime',context!); timeStampOrderedUTC = JsonConverters.fromJson(json['timeStampOrderedUTC'],'DateTime',context!); cardValidFromUTC = JsonConverters.fromJson(json['cardValidFromUTC'],'DateTime',context!); cardValidToUTC = JsonConverters.fromJson(json['cardValidToUTC'],'DateTime',context!); hasStoreCredit = json['hasStoreCredit']; cardPrice = JsonConverters.toDouble(json['cardPrice']); pricePaid = JsonConverters.toDouble(json['pricePaid']); initialStoreCredit = JsonConverters.toDouble(json['initialStoreCredit']); currentStoreCredit = JsonConverters.toDouble(json['currentStoreCredit']); phoneFullVerificationNumber = json['phoneFullVerificationNumber']; holderId = json['holderId']; holderName = json['holderName']; holderEmail = json['holderEmail']; cardPriceCurrency = json['cardPriceCurrency']; pricePaidCurrency = json['pricePaidCurrency']; deviceId = json['deviceId']; paymentMethodId = json['paymentMethodId']; paymentReference = json['paymentReference']; phoneVerificationNumber = json['phoneVerificationNumber']; paymentPhoneNumber = json['paymentPhoneNumber']; paymentId = json['paymentId']; paymentStatus = json['paymentStatus']; paymentTokenId = json['paymentTokenId']; maxTicketsPerEvent = json['maxTicketsPerEvent']; multiplePaymentsId = json['multiplePaymentsId']; imageUrl = json['imageUrl']; backgroundImageUrl = json['backgroundImageUrl']; return this; } Map toJson() => { 'id': id, 'ownerId': ownerId, 'ownerCardTypeId': ownerCardTypeId, 'phoneVerificationId': phoneVerificationId, 'initialMaxTickets': initialMaxTickets, 'currentAvailableTickets': currentAvailableTickets, 'timeStampCreatedUTC': JsonConverters.toJson(timeStampCreatedUTC,'DateTime',context!), 'timeStampLastChangedUTC': JsonConverters.toJson(timeStampLastChangedUTC,'DateTime',context!), 'timeStampBoughtUTC': JsonConverters.toJson(timeStampBoughtUTC,'DateTime',context!), 'timeStampOrderedUTC': JsonConverters.toJson(timeStampOrderedUTC,'DateTime',context!), 'cardValidFromUTC': JsonConverters.toJson(cardValidFromUTC,'DateTime',context!), 'cardValidToUTC': JsonConverters.toJson(cardValidToUTC,'DateTime',context!), 'hasStoreCredit': hasStoreCredit, 'cardPrice': cardPrice, 'pricePaid': pricePaid, 'initialStoreCredit': initialStoreCredit, 'currentStoreCredit': currentStoreCredit, 'phoneFullVerificationNumber': phoneFullVerificationNumber, 'holderId': holderId, 'holderName': holderName, 'holderEmail': holderEmail, 'cardPriceCurrency': cardPriceCurrency, 'pricePaidCurrency': pricePaidCurrency, 'deviceId': deviceId, 'paymentMethodId': paymentMethodId, 'paymentReference': paymentReference, 'phoneVerificationNumber': phoneVerificationNumber, 'paymentPhoneNumber': paymentPhoneNumber, 'paymentId': paymentId, 'paymentStatus': paymentStatus, 'paymentTokenId': paymentTokenId, 'maxTicketsPerEvent': maxTicketsPerEvent, 'multiplePaymentsId': multiplePaymentsId, 'imageUrl': imageUrl, 'backgroundImageUrl': backgroundImageUrl }; getTypeName() => "OwnerCards"; TypeContext? context = _ctx; } class OwnerCardsSoldSearchResult implements IConvertible { List? items; int? statusCode; String? message; OwnerCardsSoldSearchResult({this.items,this.statusCode,this.message}); OwnerCardsSoldSearchResult.fromJson(Map json) { fromMap(json); } fromMap(Map json) { items = JsonConverters.fromJson(json['items'],'List',context!); statusCode = json['statusCode']; message = json['message']; return this; } Map toJson() => { 'items': JsonConverters.toJson(items,'List',context!), 'statusCode': statusCode, 'message': message }; getTypeName() => "OwnerCardsSoldSearchResult"; TypeContext? context = _ctx; } // @Route("/OwnerCards/Sold", "POST") class OwnerCardsSoldSearchRequest implements IReturn, IConvertible { int? ownerId; bool? includeInvalid; OwnerCardsSoldSearchRequest({this.ownerId,this.includeInvalid}); OwnerCardsSoldSearchRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ownerId = json['ownerId']; includeInvalid = json['includeInvalid']; return this; } Map toJson() => { 'ownerId': ownerId, 'includeInvalid': includeInvalid }; createResponse() => OwnerCardsSoldSearchResult(); getResponseTypeName() => "OwnerCardsSoldSearchResult"; getTypeName() => "OwnerCardsSoldSearchRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'stubbur_autoupdates_live.smartnewapis.com', types: { 'OwnerCards': TypeInfo(TypeOf.Class, create:() => OwnerCards()), 'OwnerCardsSoldSearchResult': TypeInfo(TypeOf.Class, create:() => OwnerCardsSoldSearchResult()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'OwnerCardsSoldSearchRequest': TypeInfo(TypeOf.Class, create:() => OwnerCardsSoldSearchRequest()), });