import { ResourceDownload } from '../resource-download';

/** @description This model represents a single manifest created with a shipping provider. */
export class Manifest {
  /** @description The unique identifier for this manifest. */
  manifest_id?: string;
  /** @description The resource and where it can be downloaded */
  document_download?: ResourceDownload;
  /** @deprecated This property is no longer used please use the document_download */
  document_href?: string;
  /** @deprecated This property is no longer used please use the document_download */
  document_data?: string;
  manifest_request_shipment_ids?: string[];
}
