/* Options: Date: 2025-04-04 19:12:22 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PaymentGatewayService.GetAllPublicCreatablePaymentGatewaysForCountryRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/api/PaymentGateway/GetAllPublicCreatablePaymentGatewaysForCountry", "POST,GET") class GetAllPublicCreatablePaymentGatewaysForCountryRequest implements IReturn>, IConvertible { String? CountryCode; GetAllPublicCreatablePaymentGatewaysForCountryRequest({this.CountryCode}); GetAllPublicCreatablePaymentGatewaysForCountryRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CountryCode = json['CountryCode']; return this; } Map toJson() => { 'CountryCode': CountryCode }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetAllPublicCreatablePaymentGatewaysForCountryRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'GetAllPublicCreatablePaymentGatewaysForCountryRequest': TypeInfo(TypeOf.Class, create:() => GetAllPublicCreatablePaymentGatewaysForCountryRequest()), });