getQuickMessageList
Lấy danh sách tin nhắn nhanh
api.getQuickMessageList()
Parameters
Return
Promise<GetQuickMessageListResponse>
Types
export type GetQuickMessageListResponse = {
cursor: number;
version: number;
items: QuickMessage[];
};
Examples
api.getQuickMessageList()
.then(console.log)
.catch(console.error);
Related
Last updated