Layer 227
constructor
groupCallMessage#907ce88e random_id:long message:TextWithEntities = GroupCallMessage;

Parameters

Name Type Description
FromAdmin flags .1? true Whether the message was sent by a group call admin
Id int Message ID
FromId Peer Displayed message author
Date int Message date
Message TextWithEntities Message text or emoji reaction; empty for standalone paid live story donations. Must be at most group_call_message_length_limit UTF-8 characters long. For paid chats, use stars_groupcall_message_limits to source limits according to the passed value of paid_message_stars, instead.
PaidMessageStars flags .0? long Number of Telegram Stars donated with the message or standalone donation

Gogram Example

// Creating GroupCallMessageObj constructor
obj := &tg.GroupCallMessageObj{
    FromAdmin: nil,
    Id: 42,
    FromId: &tg.Peer{},
    Date: 42,
    Message: &tg.TextWithEntities{},
    PaidMessageStars: nil,
}