Layer 220
method
phone.sendGroupCallMessage#b1d11410 flags:# call:InputGroupCall random_id:long message:TextWithEntities allow_paid_stars:flags.0?long send_as:flags.1?InputPeer = Updates;

Parameters

Name Type Description
Call InputGroupCall
RandomId long
Message TextWithEntities
AllowPaidStars flags.0?long
SendAs flags.1?InputPeer

Returns

Updates

Gogram Example

// PhoneSendGroupCallMessage - using Params struct
result, err := client.PhoneSendGroupCallMessage(&tg.PhoneSendGroupCallMessageParams{
    Call: &tg.InputGroupCall{},
    RandomId: int64(0),
    Message: &tg.TextWithEntities{},

    // Optional fields:
    // AllowPaidStars: int64(0),
    // SendAs: &tg.InputPeerUser{UserID: int64(123456789)},
})
if err != nil {
    // handle error
}
// result is *tg.Updates