Skip to content

phone.joinGroupCall

Layer 225

Constructor ID: 0x8fb53057
Returns: Updates

Parameters

NameTypeDescription
mutedbool (flags.0, optional)
video_stoppedbool (flags.2, optional)
callInputGroupCall
join_asInputPeer
invite_hashstring (flags.1, optional)
public_keyInt256 (flags.3, optional)
block[]byte (flags.3, optional)
paramsDataJSON

Example

go
result, err := client.Raw(&tg.JoinGroupCallRequest{
    muted: false,
    video_stopped: false,
    call: nil, // InputGroupCall
    join_as: nil, // InputPeer
    invite_hash: "",
    public_key: nil, // Int256
    block: nil,
    params: nil, // DataJSON
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.