Source code for pyrogram.raw.types.input_file_location

#  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 InputFileLocation(TLObject): # type: ignore """DEPRECATED location of a photo Constructor of :obj:`~pyrogram.raw.base.InputFileLocation`. Details: - Layer: ``229`` - ID: ``DFDAABE1`` Parameters: volume_id (``int`` ``64-bit``): Server volume local_id (``int`` ``32-bit``): File identifier secret (``int`` ``64-bit``): Check sum to access the file file_reference (``bytes``): `File reference <https://core.telegram.org/api/file-references>`_ """ __slots__: List[str] = ["volume_id", "local_id", "secret", "file_reference"] ID = 0xdfdaabe1 QUALNAME = "types.InputFileLocation" def __init__(self, *, volume_id: int, local_id: int, secret: int, file_reference: bytes) -> None: self.volume_id = volume_id # long self.local_id = local_id # int self.secret = secret # long self.file_reference = file_reference # bytes @staticmethod def read(b: BytesIO, *args: Any) -> "InputFileLocation": # No flags volume_id = Long.read(b) local_id = Int.read(b) secret = Long.read(b) file_reference = Bytes.read(b) return InputFileLocation(volume_id=volume_id, local_id=local_id, secret=secret, file_reference=file_reference) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) # No flags b.write(Long(self.volume_id)) b.write(Int(self.local_id)) b.write(Long(self.secret)) b.write(Bytes(self.file_reference)) return b.getvalue()