Giveaway¶
- class telegram.Giveaway(chats, winners_selection_date, winner_count, only_new_members=None, has_public_winners=None, prize_description=None, country_codes=None, premium_subscription_month_count=None, prize_star_count=None, *, api_kwargs=None)[source]¶
Bases:
telegram.TelegramObject
This object represents a message about a scheduled giveaway.
Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their
chats
,winners_selection_date
andwinner_count
are equal.Added in version 20.8.
- Parameters:
chats (Tuple[
telegram.Chat
]) – The list of chats which the user must join to participate in the giveaway.winners_selection_date (
datetime.datetime
) – The date when the giveaway winner will be selected. The default timezone of the bot is used for localization, which is UTC unlesstelegram.ext.Defaults.tzinfo
is used.winner_count (
int
) – The number of users which are supposed to be selected as winners of the giveaway.only_new_members (
True
, optional) – IfTrue
, only users who join the chats after the giveaway started should be eligible to win.has_public_winners (
True
, optional) –True
, if the list of giveaway winners will be visible to everyoneprize_description (
str
, optional) – Description of additional giveaway prizecountry_codes (Sequence[
str
]) – A list of two-letter ISO 3166-1 alpha-2 country codes indicating the countries from which eligible users for the giveaway must come. If empty, then all users can participate in the giveaway. Users with a phone number that was bought on Fragment can always participate in giveaways.prize_star_count (
int
, optional) –The number of Telegram Stars to be split between giveaway winners; for Telegram Star giveaways only.
Added in version 21.6.
premium_subscription_month_count (
int
, optional) – The number of months the Telegram Premium subscription won from the giveaway will be active for; for Telegram Premium giveaways only.
- chats[source]¶
The list of chats which the user must join to participate in the giveaway.
- Type:
Sequence[
telegram.Chat
]
- winners_selection_date[source]¶
The date when the giveaway winner will be selected. The default timezone of the bot is used for localization, which is UTC unless
telegram.ext.Defaults.tzinfo
is used.- Type:
- winner_count[source]¶
The number of users which are supposed to be selected as winners of the giveaway.
- Type:
- only_new_members[source]¶
Optional. If
True
, only users who join the chats after the giveaway started should be eligible to win.- Type:
- has_public_winners[source]¶
Optional.
True
, if the list of giveaway winners will be visible to everyone- Type:
- country_codes[source]¶
Optional. A tuple of two-letter ISO 3166-1 alpha-2 country codes indicating the countries from which eligible users for the giveaway must come. If empty, then all users can participate in the giveaway. Users with a phone number that was bought on Fragment can always participate in giveaways.
- Type:
Tuple[
str
]
- prize_star_count[source]¶
Optional. The number of Telegram Stars to be split between giveaway winners; for Telegram Star giveaways only.
Added in version 21.6.
- Type:
Optional. The number of months the Telegram Premium subscription won from the giveaway will be active for; for Telegram Premium giveaways only.
- Type: