/* Options: Date: 2026-02-14 10:18:47 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.co.za //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateCustomerNodNdd.* //ExcludeTypes: //DefaultImports: */ export interface IReturnVoid { createResponse(): void; } /** @description 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(System.UnauthorizedAccessException)", StatusCode=403) export class UpdateCustomerNodNdd implements IReturnVoid { public ownerGln: string; public customerGln: string; public nod: string[] = []; public ndd: string[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateCustomerNodNdd'; } public getMethod() { return 'POST'; } public createResponse() {} }