shopee-client
Version:
Shoppe Open API Client
20 lines (19 loc) • 381 B
TypeScript
import { TopPickItem } from "./GetTopPickListResponse";
export default interface AddTopPickResponse {
/**
* Collection id
*/
top_picks_id: number;
/**
* Whether it is activated or not.
*/
is_activated: boolean;
/**
* Collection name
*/
name: string;
/**
* Item list of the collection
*/
items: TopPickItem;
}