Interface UpdateGroupCallMessageSendFailed

A group call message failed to send. Subtype of Update.

interface UpdateGroupCallMessageSendFailed {
    @type: "updateGroupCallMessageSendFailed";
    error: Error;
    group_call_id: number;
    message_id: number;
}

Properties

@type: "updateGroupCallMessageSendFailed"
error: Error

The cause of the message sending failure.

group_call_id: number

Identifier of the group call.

message_id: number

Message identifier.