UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

13 lines (11 loc) 528 B
import { Identifier } from '../identifier'; import { ShipmentIdentifier } from './shipment-identifier'; /** @description Basic structure for a pickup confirmation */ export class PickupConfirmation { /** @description The primary confirmation ID for this request. */ confirmation_id?: string; /** @description Other identifiers potentially needed in other calls. */ alternate_identifiers?: Identifier[]; /** @description List of the shipments added for this pickup. */ shipment_identifiers?: ShipmentIdentifier[]; }