Layer 227
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:
SecureValueError
Secure value error
SecureValueErrorData
Represents an issue in one of the data fields that was provided by the user. The error is considered
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
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
SecureValueErrorSelfie
Represents an issue with the selfie with a document. The error is considered resolved when the file
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.SecureValueError{} var _ tg.SecureValueError = &tg.SecureValueErrorData{} var _ tg.SecureValueError = &tg.SecureValueErrorFile{} var _ tg.SecureValueError = &tg.SecureValueErrorFiles{} var _ tg.SecureValueError = &tg.SecureValueErrorFrontSide{} // ... and 4 more constructors