/* Options: Date: 2026-05-19 05:38:53 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FindPaymentMethods.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/paymentMethods", "GET POST") // @Route("/paymentMethods/usecards/{UseCards}", "GET POST") class FindPaymentMethods implements IReturn>, IConvertible { bool? useCards; FindPaymentMethods({this.useCards}); FindPaymentMethods.fromJson(Map json) { fromMap(json); } fromMap(Map json) { useCards = json['useCards']; return this; } Map toJson() => { 'useCards': useCards }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "FindPaymentMethods"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'stubbur_app.azurewebsites.net', types: { 'FindPaymentMethods': TypeInfo(TypeOf.Class, create:() => FindPaymentMethods()), });