Struct actix_telegram::types::PassportFile[][src]

pub struct PassportFile {
    pub file_id: String,
    pub file_size: Integer,
    pub file_date: Integer,
}

This object represents a file uploaded to Telegram Passport. Currently all Telegram Passport files are in JPEG format when decrypted and don't exceed 10MB.

Fields

Unique identifier for this file

File size

Unix time when the file was uploaded

Trait Implementations

impl Debug for PassportFile
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations