sendLink
Gửi liên kết
api.sendLink(options, threadId[, type])
Parameters
options
SendLinkOptionsthreadId
stringtype
ThreadType?mặc định
ThreadType.User
Return
Promise<SendLinkResponse>
Types
export type SendLinkOptions = {
msg?: string;
link: string;
ttl?: number;
};
export type SendLinkResponse = {
msgId: string;
};Examples
Related
Last updated