Layer 220
EncryptedChat
Abstract type representing one of 5 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.EncryptedChat interface.
Use any of the following constructors:
Gogram Example
// EncryptedChat is an interface type // You can use any of the following constructors: var _ tg.EncryptedChat = &tg.EncryptedChatWaiting{} var _ tg.EncryptedChat = &tg.EncryptedChatEmpty{} var _ tg.EncryptedChat = &tg.EncryptedChatRequested{} var _ tg.EncryptedChat = &tg.EncryptedChatDiscarded{} var _ tg.EncryptedChat = &tg.EncryptedChat{}