@warriorteam/zalo-personal
Version:
Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support, auto-reply, product catalog, and business features
18 lines (17 loc) • 401 B
TypeScript
export type ProductCatalogItem = {
price: string;
description: string;
/**
* Relative path used to build the product URL.
*
* Example: https://catalog.zalo.me/${path}
*/
path: string;
product_id: string;
product_name: string;
currency_unit: string;
product_photos: string[];
create_time: number;
catalog_id: string;
owner_id: string;
};