2.1 KiB
2.1 KiB
title | description | image |
---|---|---|
invoice | Invoice | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: invoice
Invoice
Attributes:
Name | Type | Required | Description |
---|---|---|---|
test | Bool | Optional | Test invoice |
name_requested | Bool | Optional | Set this flag if you require the user's full name to complete the order |
phone_requested | Bool | Optional | Set this flag if you require the user's phone number to complete the order |
email_requested | Bool | Optional | Set this flag if you require the user's email address to complete the order |
shipping_address_requested | Bool | Optional | Set this flag if you require the user's shipping address to complete the order |
flexible | Bool | Optional | Set this flag if the final price depends on the shipping method |
phone_to_provider | Bool | Optional | Set this flag if user's phone number should be sent to provider |
email_to_provider | Bool | Optional | Set this flag if user's email address should be sent to provider |
currency | string | Yes | Three-letter ISO 4217 currency code |
prices | Array of LabeledPrice | Yes | Prices |
Type: Invoice
Example:
$invoice = ['_' => 'invoice', 'test' => Bool, 'name_requested' => Bool, 'phone_requested' => Bool, 'email_requested' => Bool, 'shipping_address_requested' => Bool, 'flexible' => Bool, 'phone_to_provider' => Bool, 'email_to_provider' => Bool, 'currency' => 'string', 'prices' => [LabeledPrice, LabeledPrice]];
Or, if you're into Lua:
invoice={_='invoice', test=Bool, name_requested=Bool, phone_requested=Bool, email_requested=Bool, shipping_address_requested=Bool, flexible=Bool, phone_to_provider=Bool, email_to_provider=Bool, currency='string', prices={LabeledPrice}}