Class: TD::Types::StarTransactions
- Defined in:
- lib/tdlib/types/star_transactions.rb
Overview
Represents a list of Telegram Star transactions.
Instance Attribute Summary collapse
-
#next_offset ⇒ TD::Types::String
The offset for the next request.
-
#star_count ⇒ Integer
The amount of owned Telegram Stars.
-
#transactions ⇒ Array<TD::Types::StarTransaction>
List of transactions with Telegram Stars.
Method Summary
Methods inherited from Base
Instance Attribute Details
#next_offset ⇒ TD::Types::String
The offset for the next request. If empty, then there are no more results.
8 9 10 |
# File 'lib/tdlib/types/star_transactions.rb', line 8 def next_offset @next_offset end |
#star_count ⇒ Integer
The amount of owned Telegram Stars.
8 9 10 |
# File 'lib/tdlib/types/star_transactions.rb', line 8 def star_count @star_count end |
#transactions ⇒ Array<TD::Types::StarTransaction>
List of transactions with Telegram Stars.
8 9 10 |
# File 'lib/tdlib/types/star_transactions.rb', line 8 def transactions @transactions end |