Struct actix_telegram::types::InputContactMessageContent[][src]

pub struct InputContactMessageContent {
    pub phone_number: String,
    pub first_name: String,
    pub last_name: Option<String>,
    pub vcard: Option<String>,
}

Represents the content of a contact message to be sent as the result of an inline query.

Fields

Contact's phone number

Contact's first name

Contact's last name

Additional data about the contact in the form of a vCard, 0-2048 bytes

Trait Implementations

impl Debug for InputContactMessageContent
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations