GiveawayCompleted

class telegram.GiveawayCompleted(winner_count, unclaimed_prize_count=None, giveaway_message=None, is_star_giveaway=None, *, api_kwargs=None)[source]

Bases: telegram.TelegramObject

This object represents a service message about the completion of a giveaway without public winners.

Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their winner_count and unclaimed_prize_count are equal.

Added in version 20.8.

Parameters:
winner_count[source]

Number of winners in the giveaway

Type:

int

unclaimed_prize_count[source]

Optional. Number of undistributed prizes

Type:

int

giveaway_message[source]

Optional. Message with the giveaway that was completed, if it wasn’t deleted

Type:

telegram.Message

is_star_giveaway[source]

Optional. True, if the giveaway is a Telegram Star giveaway. Otherwise, currently, the giveaway is a Telegram Premium giveaway.

Added in version 21.6.

Type:

bool

classmethod de_json(data, bot=None)[source]

See telegram.TelegramObject.de_json().