sendLink

Gửi liên kết

Parameters

  • options SendLinkOptions

  • threadId string

  • type 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

Last updated