Layer 220
ChannelParticipantsFilter
Abstract type representing one of 8 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.ChannelParticipantsFilter interface.
Use any of the following constructors:
ChannelParticipantsBots
Fetch only bot participants
ChannelParticipantsBanned
Fetch only banned participants
ChannelParticipantsRecent
Fetch only recent participants
ChannelParticipantsKicked
Fetch only kicked participants
ChannelParticipantsAdmins
Fetch only admin participants
ChannelParticipantsContacts
Fetch only participants that are also contacts
ChannelParticipantsSearch
Query participants by name
ChannelParticipantsMentions
This filter is used when looking for supergroup members to mention. This filter will automatically r
Gogram Example
// ChannelParticipantsFilter is an interface type // You can use any of the following constructors: var _ tg.ChannelParticipantsFilter = &tg.ChannelParticipantsBots{} var _ tg.ChannelParticipantsFilter = &tg.ChannelParticipantsBanned{} var _ tg.ChannelParticipantsFilter = &tg.ChannelParticipantsRecent{} var _ tg.ChannelParticipantsFilter = &tg.ChannelParticipantsKicked{} var _ tg.ChannelParticipantsFilter = &tg.ChannelParticipantsAdmins{} // ... and 3 more constructors