shopee-client
Version:
Shoppe Open API Client
30 lines (29 loc) • 729 B
TypeScript
export interface UpdatePriceItem {
/**
* Shopee's unique identifier for an item.
*/
item_id: number;
/**
* Shopee's unique identifier for a variation of an item.
*/
variation_id: number;
/**
* The time when price of the variation of the item is updated.
*/
modified_time: number;
/**
* Specify the revised price of one variation of the item.
*/
price: number;
/**
* Use this field to indicate the after-tax price of variation.
*/
inflated_price: number;
}
export default interface UpdateVariantPriceResponse {
item: UpdatePriceItem;
/**
* The identifier for an API request for error tracking
*/
request_id: string;
}