Layer 220
ChannelParticipant
Abstract type representing one of 6 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.ChannelParticipant interface.
Use any of the following constructors:
Gogram Example
// ChannelParticipant is an interface type // You can use any of the following constructors: var _ tg.ChannelParticipant = &tg.ChannelParticipantSelf{} var _ tg.ChannelParticipant = &tg.ChannelParticipantCreator{} var _ tg.ChannelParticipant = &tg.ChannelParticipant{} var _ tg.ChannelParticipant = &tg.ChannelParticipantAdmin{} var _ tg.ChannelParticipant = &tg.ChannelParticipantBanned{} // ... and 1 more constructors