/* Options: Date: 2024-07-06 12:56:39 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://wpcdd-featuretest-ws.worldpay.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddressLookupRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/AddressLookup/submit", "POST") class AddressLookupRequest implements IConvertible { String? CSR; String? Text; String? Container; String? Type; String? SourceCode; AddressLookupRequest({this.CSR,this.Text,this.Container,this.Type,this.SourceCode}); AddressLookupRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CSR = json['CSR']; Text = json['Text']; Container = json['Container']; Type = json['Type']; SourceCode = json['SourceCode']; return this; } Map toJson() => { 'CSR': CSR, 'Text': Text, 'Container': Container, 'Type': Type, 'SourceCode': SourceCode }; getTypeName() => "AddressLookupRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'wpcdd_featuretest_ws.worldpay.com', types: { 'AddressLookupRequest': TypeInfo(TypeOf.Class, create:() => AddressLookupRequest()), });