telegramsjs
    Preparing search index...

    Interface PassportElementErrorUnspecified

    Represents an issue in an unspecified element of the Telegram Passport. The error is considered resolved when new data is added.

    interface PassportElementErrorUnspecified {
        element_hash: string;
        message: string;
        source: "unspecified";
        type:
            | "personal_details"
            | "passport"
            | "driver_license"
            | "identity_card"
            | "internal_passport"
            | "address"
            | "utility_bill"
            | "bank_statement"
            | "rental_agreement"
            | "passport_registration"
            | "temporary_registration"
            | "phone_number"
            | "email";
    }
    Index

    Properties

    element_hash: string

    Base64-encoded element hash.

    message: string

    Error message.

    source: "unspecified"

    Error source, must be "unspecified".

    type:
        | "personal_details"
        | "passport"
        | "driver_license"
        | "identity_card"
        | "internal_passport"
        | "address"
        | "utility_bill"
        | "bank_statement"
        | "rental_agreement"
        | "passport_registration"
        | "temporary_registration"
        | "phone_number"
        | "email"

    Type of element of the user's Telegram Passport that has the issue. Possible values are "personal_details", "passport", "driver_license", "identity_card", "internal_passport", "address", "utility_bill", "bank_statement", "rental_agreement", "passport_registration", "temporary_registration", "phone_number", and "email".