shopee-client
Version:
Shoppe Open API Client
22 lines (21 loc) • 505 B
TypeScript
export interface GetShopLogistic {
/**
* The identity of logistic channel.
*/
logistic_id: number;
/**
* The name of logistic.
*/
logistic_name: string;
/**
* The shipment method for bound orders, should be pickup or dropoff.
*/
shipment_method: string;
}
export default interface GetShopFirstMileChannelResponse {
logistics: GetShopLogistic[];
/**
* The identifier for an API request for error tracking
*/
request_id: string;
}