/* Options: Date: 2026-02-14 11:43:39 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.co.za //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateCustomerNodNdd.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { /** * Customer Master */ @Route(Path="/customerMaster/nod", Verbs="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=UnauthorizedAccessException.class, StatusCode=403) public static class UpdateCustomerNodNdd implements IReturnVoid { public String ownerGln = null; public String customerGln = null; public ArrayList nod = new ArrayList(); public ArrayList ndd = new ArrayList(); public String getOwnerGln() { return ownerGln; } public UpdateCustomerNodNdd setOwnerGln(String value) { this.ownerGln = value; return this; } public String getCustomerGln() { return customerGln; } public UpdateCustomerNodNdd setCustomerGln(String value) { this.customerGln = value; return this; } public ArrayList getNod() { return nod; } public UpdateCustomerNodNdd setNod(ArrayList value) { this.nod = value; return this; } public ArrayList getNdd() { return ndd; } public UpdateCustomerNodNdd setNdd(ArrayList value) { this.ndd = value; return this; } } }