shopee-client
Version:
Shoppe Open API Client
15 lines (14 loc) • 390 B
TypeScript
import { BaseAddress } from "./GetLogisticInfoResponse";
export interface AddressResponse extends BaseAddress {
address_flag: string[];
}
export default interface GetAddressResponse {
/**
* All pickup address that you can choose.
*/
address_list: AddressResponse[];
/**
* The identifier for an API request for error tracking
*/
request_id: string;
}