Interface StarSubscriptions

Represents a list of Telegram Star subscriptions.

interface StarSubscriptions {
    @type: "starSubscriptions";
    next_offset: string;
    required_star_count: number;
    star_amount: StarAmount;
    subscriptions: StarSubscription[];
}

Properties

@type: "starSubscriptions"
next_offset: string

The offset for the next request. If empty, then there are no more results.

required_star_count: number

The number of Telegram Stars required to buy to extend subscriptions expiring soon.

star_amount: StarAmount

The amount of owned Telegram Stars.

subscriptions: StarSubscription[]

List of subscriptions for Telegram Stars.