Skip to content

phone.sendGroupCallMessage

Layer 225

Constructor ID: 0xb1d11410
Returns: Updates

Parameters

NameTypeDescription
callInputGroupCall
random_idint64
messageTextWithEntities
allow_paid_starsint64 (flags.0, optional)
send_asInputPeer (flags.1, optional)

Example

go
result, err := client.Raw(&tg.SendGroupCallMessageRequest{
    call: nil, // InputGroupCall
    random_id: 0,
    message: nil, // TextWithEntities
    allow_paid_stars: 0,
    send_as: nil, // InputPeer
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.