UNPKG

shopee-client

Version:
22 lines (21 loc) 505 B
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; }