Inherits Function.
Informs server about an in-store purchase of Telegram Premium before authorization. Works only when the current authorization state is authorizationStateWaitPremiumPurchase.
Returns object_ptr<Ok>.
| Public Fields | |
| object_ptr< StoreTransaction > | transaction_ | 
| Information about the transaction. | |
| bool | is_restore_ | 
| Pass true if this is a restore of a Telegram Premium purchase; only for App Store. | |
| string | currency_ | 
| ISO 4217 currency code of the payment currency. | |
| int53 | amount_ | 
| Paid amount, in the smallest units of the currency. | |
| Public Types | |
| using | ReturnType = object_ptr< ok > | 
| Typedef for the type returned by the function. | |
| Public Instance Methods | |
| setAuthenticationPremiumPurchaseTransaction () | |
| setAuthenticationPremiumPurchaseTransaction (object_ptr< StoreTransaction > &&transaction_, bool is_restore_, string const ¤cy_, int53 amount_) | |
| 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 = -450986887 | 
| Identifier uniquely determining a type of the object. | |
Default constructor for a function, which informs server about an in-store purchase of Telegram Premium before authorization. Works only when the current authorization state is authorizationStateWaitPremiumPurchase.
Returns object_ptr<Ok>.
| setAuthenticationPremiumPurchaseTransaction | ( | object_ptr< StoreTransaction > && | transaction_, | 
| bool | is_restore_, | ||
| string const & | currency_, | ||
| int53 | amount_ | ||
| ) | 
Creates a function, which informs server about an in-store purchase of Telegram Premium before authorization. Works only when the current authorization state is authorizationStateWaitPremiumPurchase.
Returns object_ptr<Ok>.
| [in] | transaction_ | Information about the transaction. | 
| [in] | is_restore_ | Pass true if this is a restore of a Telegram Premium purchase; only for App Store. | 
| [in] | currency_ | ISO 4217 currency code of the payment currency. | 
| [in] | amount_ | Paid amount, in the smallest units of the currency. | 
| 
 | finalvirtual |