Interface ActionStarsGifted

Telegram Stars were gifted by the other chat participant

interface ActionStarsGifted {
    amount: Long;
    currency: string;
    isCrypto: boolean;
    stars: Long;
    transactionId?: string;
    type: "stars_gifted";
}

Properties

amount: Long

Amount of currency that was paid

currency: string

Currency in which the stars were paid for

isCrypto: boolean

Whether currency is a cryptocurrency

stars: Long

Amount of Telegram Stars that were gifted

transactionId?: string

Transaction ID, if available

type: "stars_gifted"