Skip to content

phone.createConferenceCall

Layer 225

Constructor ID: 0x7d0444bb
Returns: Updates

Parameters

NameTypeDescription
mutedbool (flags.0, optional)
video_stoppedbool (flags.2, optional)
joinbool (flags.3, optional)
random_idint32
public_keyInt256 (flags.3, optional)
block[]byte (flags.3, optional)
paramsDataJSON (flags.3, optional)

Example

go
result, err := client.Raw(&tg.CreateConferenceCallRequest{
    muted: false,
    video_stopped: false,
    join: false,
    random_id: 0,
    public_key: nil, // Int256
    block: nil,
    params: nil, // DataJSON
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.