@shipengine/connect-fulfillment-provider-api
Version:
OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API
17 lines (16 loc) • 606 B
TypeScript
import { Label } from '..';
import { ShipTo } from '../addresses/ship-to';
import { AdvancedOptions } from '../advanced-options';
import { Identifier } from '../identifier';
import { ShippedPackage } from './shipped-package';
/** @description Basic structure for a shipment that has been shipped */
export interface ShippedShipment extends Label {
tracking_number?: string;
ship_to?: ShipTo;
alternative_identifiers?: Identifier[];
service_code?: string;
packages?: ShippedPackage[];
advanced_options?: AdvancedOptions;
}
export interface PickupShipment extends ShippedShipment {
}