@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
10 lines (8 loc) • 362 B
text/typescript
import { Identifier } from '../identifier';
/** @description Identifier object for shiments */
export class ShipmentIdentifier {
/** @description The carrier tracking number for this shipment */
tracking_number?: string;
/** @description A list of alternate identifiers that can be used to identify a shipment */
alternate_identifiers?: Identifier[];
}