/* Options: Date: 2026-02-14 10:19:49 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.co.za //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateCustomerNodNdd.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; /** * Customer Master */ // @Route("/customerMaster/nod", "POST") // @Api(Description="Customer Master") // @ApiResponse(Description="Customer updated", IsDefaultResponse=true, StatusCode=200) // @ApiResponse(Description="Customer not found", StatusCode=404) // @ApiResponse(Description="Customer master request not accepted, Confirm Sender GLN", ResponseType=typeof(UnauthorizedAccessException), StatusCode=403) class UpdateCustomerNodNdd implements IReturnVoid, IConvertible, IPost { String ownerGln = ""; String customerGln = ""; List nod = []; List ndd = []; UpdateCustomerNodNdd({this.ownerGln,this.customerGln,this.nod,this.ndd}); UpdateCustomerNodNdd.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ownerGln = json['ownerGln']; customerGln = json['customerGln']; nod = JsonConverters.fromJson(json['nod'],'List',context!); ndd = JsonConverters.fromJson(json['ndd'],'List',context!); return this; } Map toJson() => { 'ownerGln': ownerGln, 'customerGln': customerGln, 'nod': JsonConverters.toJson(nod,'List',context!), 'ndd': JsonConverters.toJson(ndd,'List',context!) }; createResponse() {} getTypeName() => "UpdateCustomerNodNdd"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'stf_api_uat.data_xchange.co.za', types: { 'UpdateCustomerNodNdd': TypeInfo(TypeOf.Class, create:() => UpdateCustomerNodNdd()), });