Layer 220
constructor
chatParticipantsForbidden#8763d3e1 flags:# chat_id:long self_participant:flags.0?ChatParticipant = ChatParticipants;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
ChatId long Group ID
SelfParticipant flags.0?ChatParticipant Info about the group membership of the current user

Gogram Example

// Creating ChatParticipantsForbidden constructor
obj := &tg.ChatParticipantsForbidden{
    ChatId: int64(0),

    // Optional fields:
    // SelfParticipant: &tg.ChatParticipant{},
}