Interface CanSendMessageToUser

Check whether the current user can message another user or try to create a chat with them. Request type for Tdjson#canSendMessageToUser.

interface CanSendMessageToUser {
    @type: "canSendMessageToUser";
    only_local?: boolean;
    user_id: number;
}

Properties

@type: "canSendMessageToUser"
only_local?: boolean

Pass true to get only locally available information without sending network requests.

user_id: number

Identifier of the other user.