Interface ChatTypeSecret

A secret chat with a user. Subtype of ChatType.

interface ChatTypeSecret {
    @type: "chatTypeSecret";
    secret_chat_id: number;
    user_id: number;
}

Properties

@type: "chatTypeSecret"
secret_chat_id: number

Secret chat identifier.

user_id: number

User identifier of the other user in the secret chat.