UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

13 lines (12 loc) 545 B
import { Identifier } from '../identifier'; /** @description Information about the fulfillment plan for a set of items */ export declare class FulfillmentPlanItems { /** @description A list of identifiers for the sales order */ external_sales_order_identifiers?: Identifier[]; /** @description A list of identifiers specific to the selling channel */ external_product_identifiers?: Identifier[]; /** @description The name of the item */ name?: string; /** @description The number of items */ quantity?: number; }