shopee-client
Version:
Shoppe Open API Client
19 lines (18 loc) • 453 B
TypeScript
export default interface UpdateTopPickRequest {
/**
* Collection id
*/
top_picks_id: number;
/**
* Collection name. 1 to 24 characters.
*/
name: string;
/**
* The list of item id. Existed item_ids will overridden by the new_item_ids.
*/
item_ids: number[];
/**
* True or False. If true, it will activate this collection and deactivate the original one.
*/
is_activated: boolean;
}