Inherits Function.
Returns the list of revenue transactions for a chat. Currently, this method can be used only for channels if supergroupFullInfo.can_get_revenue_statistics == true or bots if userFullInfo.bot_info.can_get_revenue_statistics == true.
Returns object_ptr<ChatRevenueTransactions>.
Public Fields | |
int53 | chat_id_ |
Chat identifier. | |
int32 | offset_ |
Number of transactions to skip. | |
int32 | limit_ |
The maximum number of transactions to be returned; up to 200. | |
Public Types | |
using | ReturnType = object_ptr< chatRevenueTransactions > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
getChatRevenueTransactions () | |
getChatRevenueTransactions (int53 chat_id_, int32 offset_, int32 limit_) | |
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 = 1194264341 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which returns the list of revenue transactions for a chat. Currently, this method can be used only for channels if supergroupFullInfo.can_get_revenue_statistics == true or bots if userFullInfo.bot_info.can_get_revenue_statistics == true.
Returns object_ptr<ChatRevenueTransactions>.
getChatRevenueTransactions | ( | int53 | chat_id_, |
int32 | offset_, | ||
int32 | limit_ | ||
) |
Creates a function, which returns the list of revenue transactions for a chat. Currently, this method can be used only for channels if supergroupFullInfo.can_get_revenue_statistics == true or bots if userFullInfo.bot_info.can_get_revenue_statistics == true.
Returns object_ptr<ChatRevenueTransactions>.
[in] | chat_id_ | Chat identifier. |
[in] | offset_ | Number of transactions to skip. |
[in] | limit_ | The maximum number of transactions to be returned; up to 200. |
|
finalvirtual |