shopee-client
Version:
Shoppe Open API Client
15 lines (14 loc) • 515 B
TypeScript
export default interface UpdateVariantStockRequest {
/**
* Shopee's unique identifier for an item. Please input the item_id of an item to be changed.
*/
item_id: number;
/**
* Shopee's unique identifier for a variation of an item. Please input the variation_id of a variation to be changed. The variation_id and item_id pair must be matched in order to perform the update.
*/
variation_id?: number;
/**
* Specify the updated stock quantity.
*/
stock: number;
}