MTPyroger/pyrogram/api/core/future_salts.py

47 lines
1.4 KiB
Python
Raw Normal View History

2017-12-05 11:32:23 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
2019-01-01 11:36:16 +00:00
# Copyright (C) 2017-2019 Dan Tès <https://github.com/delivrance>
2017-12-05 11:32:23 +00:00
#
# 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 . import FutureSalt
from .primitives import Int, Long
2019-06-06 17:29:44 +00:00
from .tl_object import TLObject
2017-12-05 11:32:23 +00:00
2019-06-03 12:19:50 +00:00
class FutureSalts(TLObject):
2017-12-05 11:32:23 +00:00
ID = 0xae500895
__slots__ = ["req_msg_id", "now", "salts"]
QUALNAME = "FutureSalts"
def __init__(self, req_msg_id: int, now: int, salts: list):
2017-12-05 11:32:23 +00:00
self.req_msg_id = req_msg_id
self.now = now
self.salts = salts
@staticmethod
2017-12-06 18:24:46 +00:00
def read(b: BytesIO, *args) -> "FutureSalts":
2017-12-05 11:32:23 +00:00
req_msg_id = Long.read(b)
now = Int.read(b)
2017-12-05 11:32:23 +00:00
count = Int.read(b)
salts = [FutureSalt.read(b) for _ in range(count)]
return FutureSalts(req_msg_id, now, salts)