/* Options: Date: 2024-07-06 14:02:50 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://abservice.worldpay.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ApplicationXmlRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/ApplicationXml", "GET") // @Route("/ApplicationXml/{AppQueue_GUID}", "GET") class ApplicationXmlRequest implements IReturn, IConvertible { String? appQueue_GUID; ApplicationXmlRequest({this.appQueue_GUID}); ApplicationXmlRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { appQueue_GUID = json['appQueue_GUID']; return this; } Map toJson() => { 'appQueue_GUID': appQueue_GUID }; createResponse() => ""; getResponseTypeName() => "String"; getTypeName() => "ApplicationXmlRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'abservice.worldpay.com', types: { 'ApplicationXmlRequest': TypeInfo(TypeOf.Class, create:() => ApplicationXmlRequest()), });