Layer 220
SecureValueError
Abstract type representing one of 9 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.SecureValueError interface.
Use any of the following constructors:
SecureValueErrorFrontSide
Represents an issue with the front side of a document. The error is considered resolved when the fil
SecureValueErrorReverseSide
Represents an issue with the reverse side of a document. The error is considered resolved when the f
SecureValueErrorData
Represents an issue in one of the data fields that was provided by the user. The error is considered
SecureValueErrorSelfie
Represents an issue with the selfie with a document. The error is considered resolved when the file
SecureValueErrorFile
Represents an issue with a document scan. The error is considered resolved when the file with the do
SecureValueErrorFiles
Represents an issue with a list of scans. The error is considered resolved when the list of files co
SecureValueError
Secure value error
SecureValueErrorTranslationFile
Represents an issue with one of the files that constitute the translation of a document. The error i
SecureValueErrorTranslationFiles
Represents an issue with the translated version of a document. The error is considered resolved when
Gogram Example
// SecureValueError is an interface type // You can use any of the following constructors: var _ tg.SecureValueError = &tg.SecureValueErrorFrontSide{} var _ tg.SecureValueError = &tg.SecureValueErrorReverseSide{} var _ tg.SecureValueError = &tg.SecureValueErrorData{} var _ tg.SecureValueError = &tg.SecureValueErrorSelfie{} var _ tg.SecureValueError = &tg.SecureValueErrorFile{} // ... and 4 more constructors