UNPKG

@shipengine/connect-fulfillment-provider-api

Version:

OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API

10 lines (9 loc) 370 B
import { Identifier } from '../identifier'; import { Document } from '../../documents'; /** @description Package information provided by the carrier */ export interface LabelPackage { tracking_number?: string; /** @description Non-tracking alternative ids associated with this package */ alternative_identifiers?: Identifier[]; documents?: Document[]; }