@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
26 lines (25 loc) • 558 B
TypeScript
export type QuickMessage = {
id: number;
keyword: string;
type: number;
createdTime: number;
lastModified: number;
message: {
title: string;
params: string | null;
};
media: {
items: {
type: number;
photoId: number;
title: string;
width: number;
height: number;
previewThumb: string;
rawUrl: string;
thumbUrl: string;
normalUrl: string;
hdUrl: string;
}[];
} | null;
};