MadelineProtoDocs/docs/API_docs/constructors/invoice.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

1.8 KiB

title description image
invoice invoice attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: invoice

Back to constructors index

Attributes:

Name Type Required
test Bool Optional
name_requested Bool Optional
phone_requested Bool Optional
email_requested Bool Optional
shipping_address_requested Bool Optional
flexible Bool Optional
phone_to_provider Bool Optional
email_to_provider Bool Optional
currency string Yes
prices Array of LabeledPrice Yes

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]];

PWRTelegram json-encoded version:

{"_": "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]}

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}}