Interface UpdateGroupCallVerificationState

The verification state of an encrypted group call has changed; for group calls not bound to a chat only. Subtype of Update.

interface UpdateGroupCallVerificationState {
    @type: "updateGroupCallVerificationState";
    emojis: string[];
    generation: number;
    group_call_id: number;
}

Properties

@type: "updateGroupCallVerificationState"
emojis: string[]

Group call state fingerprint represented as 4 emoji; may be empty if the state isn't verified yet.

generation: number

The call state generation to which the emoji corresponds. If generation is different for two users, then their emoji may be also different.

group_call_id: number

Identifier of the group call.