/* Options: Date: 2026-02-14 09:59:46 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: AddItemDataNotification.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICommandResponse { } export class ItemDataNotificationMessage extends BaseDocument { public dataRecipient: TransactionalParty; public dataSource: TransactionalParty; public itemDataNotificationIdentification: string; public itemDataNotificationLineItem: ItemDataNotificationLineItem[] = []; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class TokenDto implements ICommandResponse { public token: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Item Data Notification */ // @Route("/itemDataNotification", "POST") // @Api(Description="Item Data Notification") // @ApiResponse(Description="Add ItemDataNotification request received", IsDefaultResponse=true, StatusCode=200) // @ApiResponse(Description="ItemDataNotification not accepted, Confirm Sender GLN", ResponseType="typeof(System.UnauthorizedAccessException)", StatusCode=403) export class AddItemDataNotification implements IReturn { /** @description ItemDataNotification model containing all of the ItemDataNotification data */ // @ApiMember(Description="ItemDataNotification model containing all of the ItemDataNotification data", ParameterType="model") public itemDataNotification: ItemDataNotificationMessage; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AddItemDataNotification'; } public getMethod() { return 'POST'; } public createResponse() { return new TokenDto(); } }