/** @description Paperless Details Object. This object contains information on hand off code and instruction that shipper needs to follow. */
export class PaperlessDetails {
  instructions!: string;
  handoff_code!: string;
}
