Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Synopsis
- data InputPassportElementErrorSource
- = InputPassportElementErrorSourceUnspecified { }
- | InputPassportElementErrorSourceDataField { }
- | InputPassportElementErrorSourceFrontSide { }
- | InputPassportElementErrorSourceReverseSide { }
- | InputPassportElementErrorSourceSelfie { }
- | InputPassportElementErrorSourceTranslationFile { }
- | InputPassportElementErrorSourceTranslationFiles {
- file_hashes :: Maybe [ByteString]
- | InputPassportElementErrorSourceFile { }
- | InputPassportElementErrorSourceFiles {
- file_hashes :: Maybe [ByteString]
Documentation
data InputPassportElementErrorSource Source #
Contains the description of an error in a Telegram Passport element; for bots only
InputPassportElementErrorSourceUnspecified | The element contains an error in an unspecified place. The error will be considered resolved when new data is added |
| |
InputPassportElementErrorSourceDataField | A data field contains an error. The error is considered resolved when the field's value changes |
| |
InputPassportElementErrorSourceFrontSide | The front side of the document contains an error. The error is considered resolved when the file with the front side of the document changes |
| |
InputPassportElementErrorSourceReverseSide | The reverse side of the document contains an error. The error is considered resolved when the file with the reverse side of the document changes |
| |
InputPassportElementErrorSourceSelfie | The selfie contains an error. The error is considered resolved when the file with the selfie changes |
| |
InputPassportElementErrorSourceTranslationFile | One of the files containing the translation of the document contains an error. The error is considered resolved when the file with the translation changes |
| |
InputPassportElementErrorSourceTranslationFiles | The translation of the document contains an error. The error is considered resolved when the list of files changes |
| |
InputPassportElementErrorSourceFile | The file contains an error. The error is considered resolved when the file changes |
| |
InputPassportElementErrorSourceFiles | The list of attached files contains an error. The error is considered resolved when the file list changes |
|