/* Options: Date: 2025-12-06 06:44:18 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.1fetch.co.za //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetProofOfDelivery.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/proofofdelivery", Verbs="GET") open class GetProofOfDelivery : ApiServiceRequest(), ILogRequest { /** * The ID of the order */ @ApiMember(Description="The ID of the order") var OrderId:UUID? = null /** * The 1F waybill for the order */ @ApiMember(Description="The 1F waybill for the order") var Waybill:String? = null } open class ApiServiceRequest : IServiceRequest, IHasApiKey { /** * The API Key required for authentication */ @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) var ApiKey:String? = null } open interface IServiceRequest { } open interface IHasApiKey { var ApiKey:String? } open interface ILogRequest { }