import { Identifier } from '../identifier';

/** @description Information about the fulfillment plan for a set of items */
export 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;
}
