/* Options: Date: 2026-02-14 10:18:04 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: AddTransactionalParty.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICommandResponse { } export class TransactionalPartyMessage { public header: Header; public transactionalParty: TransactionalPartyMessageType; public constructor(init?: Partial) { (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 Transactional Party */ // @Route("/transactionalParty", "POST") // @Api(Description="Transactional Party") // @ApiResponse(Description="Add Transactional Party request received", IsDefaultResponse=true, StatusCode=202) // @ApiResponse(Description="Transactional Party not accepted, Confirm Sender GLN", ResponseType="typeof(System.UnauthorizedAccessException)", StatusCode=403) export class AddTransactionalParty implements IReturn { /** @description Transactional Party model containing all of the transactional party data */ // @ApiMember(Description="Transactional Party model containing all of the transactional party data", ParameterType="model") public transactionalParty: TransactionalPartyMessage; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AddTransactionalParty'; } public getMethod() { return 'POST'; } public createResponse() { return new TokenDto(); } }