# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
#
# This file is part of Pyrogram.
#
# Pyrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pyrogram is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
from io import BytesIO
from pyrogram.raw.core.primitives import Int, Long, Int128, Int256, Bool, Bytes, String, Double, Vector
from pyrogram.raw.core import TLObject
from pyrogram import raw
from typing import List, Optional, Any
# # # # # # # # # # # # # # # # # # # # # # # #
# !!! WARNING !!! #
# This is a generated file! #
# All changes made in this file will be lost! #
# # # # # # # # # # # # # # # # # # # # # # # #
[docs]
class GiveawayInfo(TLObject): # type: ignore
"""Contains info about an ongoing `giveaway <https://core.telegram.org/api/giveaways>`_.
Constructor of :obj:`~pyrogram.raw.base.payments.GiveawayInfo`.
Details:
- Layer: ``229``
- ID: ``4367DAA0``
Parameters:
start_date (``int`` ``32-bit``):
When was the giveaway started
participating (``bool``, *optional*):
The current user is participating in the giveaway.
preparing_results (``bool``, *optional*):
If set, the giveaway has ended and the results are being prepared.
joined_too_early_date (``int`` ``32-bit``, *optional*):
The current user can't participate in the giveaway, because they were already a member of the channel when the giveaway started, and the ``only_new_subscribers`` was set when starting the giveaway.
admin_disallowed_chat_id (``int`` ``64-bit``, *optional*):
If set, the current user can't participate in the giveaway, because they are an administrator in one of the channels (ID specified in this flag) that created the giveaway.
disallowed_country (``str``, *optional*):
If set, the current user can't participate in this giveaway, because their phone number is from the specified disallowed country (specified as a two-letter ISO 3166-1 alpha-2 country code).
Functions:
This object can be returned by 1 function.
.. currentmodule:: pyrogram.raw.functions
.. autosummary::
:nosignatures:
payments.GetGiveawayInfo
"""
__slots__: List[str] = ["start_date", "participating", "preparing_results", "joined_too_early_date", "admin_disallowed_chat_id", "disallowed_country"]
ID = 0x4367daa0
QUALNAME = "types.payments.GiveawayInfo"
def __init__(self, *, start_date: int, participating: Optional[bool] = None, preparing_results: Optional[bool] = None, joined_too_early_date: Optional[int] = None, admin_disallowed_chat_id: Optional[int] = None, disallowed_country: Optional[str] = None) -> None:
self.start_date = start_date # int
self.participating = participating # flags.0?true
self.preparing_results = preparing_results # flags.3?true
self.joined_too_early_date = joined_too_early_date # flags.1?int
self.admin_disallowed_chat_id = admin_disallowed_chat_id # flags.2?long
self.disallowed_country = disallowed_country # flags.4?string
@staticmethod
def read(b: BytesIO, *args: Any) -> "GiveawayInfo":
flags = Int.read(b)
participating = True if flags & (1 << 0) else False
preparing_results = True if flags & (1 << 3) else False
start_date = Int.read(b)
joined_too_early_date = Int.read(b) if flags & (1 << 1) else None
admin_disallowed_chat_id = Long.read(b) if flags & (1 << 2) else None
disallowed_country = String.read(b) if flags & (1 << 4) else None
return GiveawayInfo(start_date=start_date, participating=participating, preparing_results=preparing_results, joined_too_early_date=joined_too_early_date, admin_disallowed_chat_id=admin_disallowed_chat_id, disallowed_country=disallowed_country)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
flags = 0
flags |= (1 << 0) if self.participating else 0
flags |= (1 << 3) if self.preparing_results else 0
flags |= (1 << 1) if self.joined_too_early_date is not None else 0
flags |= (1 << 2) if self.admin_disallowed_chat_id is not None else 0
flags |= (1 << 4) if self.disallowed_country is not None else 0
b.write(Int(flags))
b.write(Int(self.start_date))
if self.joined_too_early_date is not None:
b.write(Int(self.joined_too_early_date))
if self.admin_disallowed_chat_id is not None:
b.write(Long(self.admin_disallowed_chat_id))
if self.disallowed_country is not None:
b.write(String(self.disallowed_country))
return b.getvalue()