Files
botAffilate/serverNode/node_modules/zca-js/dist/models/Catalog.d.ts
T

17 lines
359 B
TypeScript

export type CatalogItem = {
id: string;
name: string;
version: number;
ownerId: string;
isDefault: boolean;
/**
* Relative path used to build the catalog URL.
*
* Example: `https://catalog.zalo.me/${path}`
*/
path: string;
catalogPhoto: string | null;
totalProduct: number;
created_time: number;
};