/* Options: Date: 2025-12-14 03:32:47 Version: 8.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://pcs-ws.worldpay.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RetrieveLeadData.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/PCS/RetrieveLeadData", "POST") class RetrieveLeadData implements IConvertible, IPost { String? Communication_GUID; RetrieveLeadData({this.Communication_GUID}); RetrieveLeadData.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Communication_GUID = json['Communication_GUID']; return this; } Map toJson() => { 'Communication_GUID': Communication_GUID }; getTypeName() => "RetrieveLeadData"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'pcs_ws.worldpay.com', types: { 'RetrieveLeadData': TypeInfo(TypeOf.Class, create:() => RetrieveLeadData()), });