/** @description Shipment information relating to an uploaded document */
export class DocumentUploadShipment {
  /** @description The shipment datetime */
  datetime!: string;
  /** @description The origin country code */
  origin_country_code!: string;
  /** @description The destination country code */
  destination_country_code!: string;
  /** @description The shipment service code */
  service_code!: string;
}
