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