shopee-client
Version:
Shoppe Open API Client
22 lines (21 loc) • 477 B
TypeScript
export interface OrderReleaseItem {
/**
* Shopee's unique identifier for an order.
*/
ordersn: string;
/**
* Order's escrow amount.
*/
payout_amount: number;
/**
* Timestamp of escrow amount transaction finished.
*/
escrow_release_time: number;
}
export default interface GetEscrowReleasedOrderResponse {
/**
* Filtered orders' escrow information.
*/
orders: OrderReleaseItem[];
request_id: string;
}