Inherits MessageContent.
A message with an invoice from a bot. Use getInternalLink with internalLinkTypeBotStart to share the invoice.
Public Fields | |
object_ptr< productInfo > | product_info_ |
Information about the product. | |
string | currency_ |
Currency for the product price. | |
int53 | total_amount_ |
Product total price in the smallest units of the currency. | |
string | start_parameter_ |
Unique invoice bot start_parameter to be passed to getInternalLink. | |
bool | is_test_ |
True, if the invoice is a test invoice. | |
bool | need_shipping_address_ |
True, if the shipping address must be specified. | |
int53 | receipt_message_id_ |
The identifier of the message with the receipt, after the product has been purchased. | |
object_ptr< PaidMedia > | paid_media_ |
Extended media attached to the invoice; may be null if none. | |
object_ptr< formattedText > | paid_media_caption_ |
Extended media caption; may be null if none. | |
Public Instance Methods | |
messageInvoice () | |
messageInvoice (object_ptr< productInfo > &&product_info_, string const ¤cy_, int53 total_amount_, string const &start_parameter_, bool is_test_, bool need_shipping_address_, int53 receipt_message_id_, object_ptr< PaidMedia > &&paid_media_, object_ptr< formattedText > &&paid_media_caption_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = 263060806 |
Identifier uniquely determining a type of the object. | |
messageInvoice | ( | ) |
A message with an invoice from a bot. Use getInternalLink with internalLinkTypeBotStart to share the invoice.
messageInvoice | ( | object_ptr< productInfo > && | product_info_, |
string const & | currency_, | ||
int53 | total_amount_, | ||
string const & | start_parameter_, | ||
bool | is_test_, | ||
bool | need_shipping_address_, | ||
int53 | receipt_message_id_, | ||
object_ptr< PaidMedia > && | paid_media_, | ||
object_ptr< formattedText > && | paid_media_caption_ | ||
) |
A message with an invoice from a bot. Use getInternalLink with internalLinkTypeBotStart to share the invoice.
[in] | product_info_ | Information about the product. |
[in] | currency_ | Currency for the product price. |
[in] | total_amount_ | Product total price in the smallest units of the currency. |
[in] | start_parameter_ | Unique invoice bot start_parameter to be passed to getInternalLink. |
[in] | is_test_ | True, if the invoice is a test invoice. |
[in] | need_shipping_address_ | True, if the shipping address must be specified. |
[in] | receipt_message_id_ | The identifier of the message with the receipt, after the product has been purchased. |
[in] | paid_media_ | Extended media attached to the invoice; may be null if none. |
[in] | paid_media_caption_ | Extended media caption; may be null if none. |
|
finalvirtual |