/** @description Attributes from the shipping provider about a shipment necessary for tracking */
export class TrackingAttribute {
  type!: string;
  value!: string;
}
