Layer 220
InputEncryptedFile
Abstract type representing one of 4 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.InputEncryptedFile interface.
Use any of the following constructors:
InputEncryptedFileEmpty
Empty constructor.
InputEncryptedFileUploaded
Sets new encrypted file saved by parts using upload. save File Part method.
InputEncryptedFile
Sets forwarded encrypted file for attachment.
InputEncryptedFileBigUploaded
Assigns a new big encrypted file (over 10 MB in size), saved in parts using the method upload. save Bi
Gogram Example
// InputEncryptedFile is an interface type // You can use any of the following constructors: var _ tg.InputEncryptedFile = &tg.InputEncryptedFileEmpty{} var _ tg.InputEncryptedFile = &tg.InputEncryptedFileUploaded{} var _ tg.InputEncryptedFile = &tg.InputEncryptedFile{} var _ tg.InputEncryptedFile = &tg.InputEncryptedFileBigUploaded{}