import { PickupShipment } from './shipped-shipment';

/** @description Details for a pickup shipment */
export class PickupShipmentDetails {
  /** @description Service category for the carrier (ground, express, next_day) */
  pickup_service_code?: string;
  /** @description List of shipments to be picked up */
  shipments?: PickupShipment[];
}
