/* Options: Date: 2025-05-06 16:58:25 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: FindEventDetailsAndPrices.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/eventDetailsAndPrices", "GET POST") class FindEventDetailsAndPrices implements IReturn>, IConvertible { String? phoneVerificationNumber; String? deviceId; FindEventDetailsAndPrices({this.phoneVerificationNumber,this.deviceId}); FindEventDetailsAndPrices.fromJson(Map json) { fromMap(json); } fromMap(Map json) { phoneVerificationNumber = json['phoneVerificationNumber']; deviceId = json['deviceId']; return this; } Map toJson() => { 'phoneVerificationNumber': phoneVerificationNumber, 'deviceId': deviceId }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "FindEventDetailsAndPrices"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'stubbur_autoupdates_live.smartnewapis.com', types: { 'FindEventDetailsAndPrices': TypeInfo(TypeOf.Class, create:() => FindEventDetailsAndPrices()), });