Interface PassportElementErrorFile

Represents an issue with a document scan. The error is considered resolved when the file with the document scan changes.

interface PassportElementErrorFile {
    fileHash: string;
    message: string;
    source: "file";
    type:
        | "utility_bill"
        | "bank_statement"
        | "rental_agreement"
        | "passport_registration"
        | "temporary_registration";
}

Properties

fileHash: string

Base64-encoded file hash.

message: string

Error message.

source: "file"

Error source, must be "file".

type:
    | "utility_bill"
    | "bank_statement"
    | "rental_agreement"
    | "passport_registration"
    | "temporary_registration"

The section of the user's Telegram Passport that has the issue. Possible values are "utility_bill", "bank_statement", "rental_agreement", "passport_registration", and "temporary_registration".