@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
14 lines (12 loc) • 630 B
text/typescript
import { Identifier } from '../identifier';
import { FulfillmentPlanItems } from './fulfillment-plan-items';
import { RawExternalSource } from './raw-external-source';
/** @description This model contains information about the fulfillment plan. */
export class FulfillmentPlanDetails {
/** @description A list of identifiers for the sales order. */
external_sales_order_identifiers?: Identifier[];
/** @description Information about the fulfillment plan item. */
items?: FulfillmentPlanItems[];
/** @description This model represents a raw external source of information */
raw_external_source?: RawExternalSource;
}