typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
26 lines (25 loc) • 848 B
TypeScript
/**
* ## PassportElementErrorFiles
* Represents an issue with a list of scans. The error is considered resolved when the list of files containing the
* scans changes.
* @see https://core.telegram.org/bots/api#passportelementerrorfiles
*/
export type PassportElementErrorFiles = {
/**
* Error source, must be files
*/
source: 'files';
/**
* The section of the user's Telegram Passport which has the issue, one of “utility_bill”, “bank_statement”,
* “rental_agreement”, “passport_registration”, “temporary_registration”
*/
type: 'utility_bill' | 'bank_statement' | 'rental_agreement' | 'passport_registration' | 'temporary_registration';
/**
* List of base64-encoded file hashes
*/
file_hashes: string[];
/**
* Error message
*/
message: string;
};