Interface PremiumGiftPaymentOption

Describes an option for gifting Telegram Premium to a user. Use telegramPaymentPurposePremiumGift for out-of-store payments or payments in Telegram Stars.

interface PremiumGiftPaymentOption {
    @type: "premiumGiftPaymentOption";
    amount: number;
    currency: string;
    discount_percentage: number;
    month_count: number;
    star_count: number;
    sticker: Sticker;
    store_product_id: string;
}

Properties

@type: "premiumGiftPaymentOption"
amount: number

The amount to pay, in the smallest units of the currency.

currency: string

ISO 4217 currency code for the payment.

discount_percentage: number

The discount associated with this option, as a percentage.

month_count: number

Number of months the Telegram Premium subscription will be active.

star_count: number

The alternative amount of Telegram Stars to pay; 0 if payment in Telegram Stars is not possible.

sticker: Sticker

A sticker to be shown along with the option; may be null if unknown.

store_product_id: string

Identifier of the store product associated with the option.