Struct tg_bot_models::SendInvoice[][src]

pub struct SendInvoice {
    pub chat_id: i64,
    pub title: String,
    pub description: String,
    pub payload: String,
    pub provider_token: String,
    pub start_parameter: String,
    pub currency: String,
    pub prices: Vec<LabeledPrice>,
    pub provider_data: Option<String>,
    pub photo_url: Option<String>,
    pub photo_size: Option<i64>,
    pub photo_width: Option<i64>,
    pub photo_height: Option<i64>,
    pub need_name: Option<bool>,
    pub need_phone_number: Option<bool>,
    pub need_email: Option<bool>,
    pub need_shipping_address: Option<bool>,
    pub send_phone_number_to_provider: Option<bool>,
    pub send_email_to_provider: Option<bool>,
    pub is_flexible: Option<bool>,
    pub disable_notification: Option<bool>,
    pub reply_to_message_id: Option<i64>,
    pub reply_markup: Option<InlineKeyboardMarkup>,
}

Use this method to send invoices. On success, the sent Message is returned.

Fields

Unique identifier for the target private chat

Product name, 1-32 characters

Product description, 1-255 characters

Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes.

Payments provider token, obtained via Botfather

Unique deep-linking parameter that can be used to generate this invoice when used as a start parameter

Three-letter ISO 4217 currency code, see more on currencies

Price breakdown, a list of components (e.g. product price, tax, discount, delivery cost, delivery tax, bonus, etc.)

JSON-encoded data about the invoice, which will be shared with the payment provider. A detailed description of required fields should be provided by the payment provider.

URL of the product photo for the invoice. Can be a photo of the goods or a marketing image for a service. People like it better when they see what they are paying for.

Photo size

Photo width

Photo height

Pass True, if you require the user's full name to complete the order

Pass True, if you require the user's phone number to complete the order

Pass True, if you require the user's email address to complete the order

Pass True, if you require the user's shipping address to complete the order

Pass True, if user's phone number should be sent to provider

Pass True, if user's email address should be sent to provider

Pass True, if the final price depends on the shipping method

Sends the message silently. Users will receive a notification with no sound.

If the message is a reply, ID of the original message

A JSON-serialized object for an inline keyboard. If empty, one 'Pay total price' button will be shown. If not empty, the first button must be a Pay button.

Trait Implementations

impl Debug for SendInvoice
[src]

Formats the value using the given formatter. Read more

impl Clone for SendInvoice
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SendInvoice
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for SendInvoice
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

impl Send for SendInvoice

impl Sync for SendInvoice