shopee-client
Version:
Shoppe Open API Client
25 lines (24 loc) • 739 B
TypeScript
export interface SimpleOrder {
/**
* The order serial numbers. Make sure the order has trackingNo generated before calling this API.
*/
ordersn: string;
}
export default interface GetForderWaybillRequest {
/**
* The set of order serial numbers. Up to 50 ordersn in one call.
*/
orders_list: SimpleOrder[];
/**
* The unique identifier for a fulfillment order.
*/
forder_id?: string;
/**
* This field is used for logistic_id 80003 and 80004,true standards for JOB shipping method, false standards for Regular shipping method.
*/
is_job?: boolean;
/**
* Option to get batch airway bills in single file. Default value is false.
*/
is_batch?: boolean;
}