UNPKG

@shipengine/connect-order-source-api

Version:

This is the typescript/javascript definitions for the order source api

13 lines (12 loc) 588 B
import Joi from 'joi'; import { SalesOrder } from '../models'; /** * @description The response from an ExportSalesOrders method */ export declare class SalesOrdersExportResponse { /** @description A list of sales orders to be imported */ sales_orders: SalesOrder[]; /** @description Any information necessary to make the next call to retrieve orders (paging, etc). If all orders have been retrieved return undefined @example '343', 'f356bf8c-665d-4164-96ef-337876d958ea' */ cursor?: string; } export declare const SalesOrdersExportResponseSchema: Joi.ObjectSchema<any>;