/* Options: Date: 2026-04-14 20:38:55 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.com/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateCustomerNodNdd.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturnVoid { createResponse(): void; } /** @description Update customer NOD/NDD */ // @Route("/customerMaster/nod", "POST") // @Api(Description="Update customer NOD/NDD") // @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() {} }