@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
10 lines (8 loc) • 575 B
text/typescript
import { ProofOfDeliveryFormat } from './proof-of-delivery-format';
/** @description An image captured at the time of delivery, serving as evidence that the shipment was successfully delivered to the recipient. It can be used to capture things like recipient's signature, location of delivery, condition of the package upon delivery, etc. */
export class ProofOfDelivery {
/** @description Base64 encoded data for the proof of delivery. */
data!: string;
/** @description The format the document is in.\r\nPdf - PDF\r\nPng - PNG */
format!: ProofOfDeliveryFormat;
}