/* Options: Date: 2025-12-06 06:33:51 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.1fetch.co.za //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetProofOfDelivery.* //ExcludeTypes: //DefaultImports: */ export class ApiServiceRequest implements IServiceRequest, IHasApiKey { /** @description The API Key required for authentication */ // @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) public ApiKey: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IServiceRequest { } export interface IHasApiKey { ApiKey: string; } export interface ILogRequest { } // @Route("/proofofdelivery", "GET") export class GetProofOfDelivery extends ApiServiceRequest implements ILogRequest { /** @description The ID of the order */ // @ApiMember(Description="The ID of the order") public OrderId: string; /** @description The 1F waybill for the order */ // @ApiMember(Description="The 1F waybill for the order") public Waybill: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'GetProofOfDelivery'; } public getMethod() { return 'GET'; } public createResponse() {} }