Class SuggestedPostPrice

java.lang.Object
io.github.natanimn.telebof.types.suggested.SuggestedPostPrice
All Implemented Interfaces:
Serializable

public class SuggestedPostPrice extends Object implements Serializable
Describes the price of a suggested post.
Since:
3 September 2025
See Also:
  • Field Details

    • currency

      public String currency
      Currency in which the post will be paid. Currently, must be one of “XTR” for Telegram Stars or “TON” for toncoins
    • amount

      public Long amount
      The amount of the currency that will be paid for the post in the smallest units of the currency, i.e. Telegram Stars or nanotoncoins. Currently, price in Telegram Stars must be between 5 and 100000, and price in nanotoncoins must be between 10000000 and 10000000000000.
  • Constructor Details

    • SuggestedPostPrice

      public SuggestedPostPrice(String currency, long amount)
      Required
      Parameters:
      currency - Currency in which the post will be paid. Currently, must be one of “XTR” for Telegram Stars or “TON” for toncoins
      amount - The amount of the currency that will be paid for the post in the smallest units of the currency, i.e. Telegram Stars or nanotoncoins. Currently, price in Telegram Stars must be between 5 and 100000, and price in nanotoncoins must be between 10000000 and 10000000000000.