Class TdApi.GetStarTransactions

Enclosing class:
TdApi

public static class TdApi.GetStarTransactions extends TdApi.Function<TdApi.StarTransactions>
Returns the list of Telegram star transactions for the specified owner.

Returns StarTransactions

  • Field Details

    • ownerId

      public TdApi.MessageSender ownerId
      Identifier of the owner of the Telegram stars; can be the identifier of the current user, identifier of an owned bot, or identifier of a channel chat with supergroupFullInfo.canGetStarRevenueStatistics == true.
    • direction

      Direction of the transactions to receive; pass null to get all transactions.
    • offset

      public String offset
      Offset of the first transaction to return as received from the previous request; use empty string to get the first chunk of results.
    • limit

      public int limit
      The maximum number of transactions to return.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      Identifier uniquely determining type of the object.
      See Also:
  • Constructor Details

    • GetStarTransactions

      public GetStarTransactions()
      Default constructor for a function, which returns the list of Telegram star transactions for the specified owner.

      Returns StarTransactions

    • GetStarTransactions

      public GetStarTransactions(TdApi.MessageSender ownerId, TdApi.StarTransactionDirection direction, String offset, int limit)
      Creates a function, which returns the list of Telegram star transactions for the specified owner.

      Returns StarTransactions

      Parameters:
      ownerId - Identifier of the owner of the Telegram stars; can be the identifier of the current user, identifier of an owned bot, or identifier of a channel chat with supergroupFullInfo.canGetStarRevenueStatistics == true.
      direction - Direction of the transactions to receive; pass null to get all transactions.
      offset - Offset of the first transaction to return as received from the previous request; use empty string to get the first chunk of results.
      limit - The maximum number of transactions to return.
  • Method Details