Source code for pyrogram.raw.types.peer_stories
# 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 PeerStories(TLObject): # type: ignore
"""`Stories <https://core.telegram.org/api/stories>`_ associated to a peer
Constructor of :obj:`~pyrogram.raw.base.PeerStories`.
Details:
- Layer: ``229``
- ID: ``9A35E999``
Parameters:
peer (:obj:`Peer <pyrogram.raw.base.Peer>`):
The peer
stories (List of :obj:`StoryItem <pyrogram.raw.base.StoryItem>`):
Stories
max_read_id (``int`` ``32-bit``, *optional*):
If set, contains the ID of the maximum read story
"""
__slots__: List[str] = ["peer", "stories", "max_read_id"]
ID = 0x9a35e999
QUALNAME = "types.PeerStories"
def __init__(self, *, peer: "raw.base.Peer", stories: List["raw.base.StoryItem"], max_read_id: Optional[int] = None) -> None:
self.peer = peer # Peer
self.stories = stories # Vector<StoryItem>
self.max_read_id = max_read_id # flags.0?int
@staticmethod
def read(b: BytesIO, *args: Any) -> "PeerStories":
flags = Int.read(b)
peer = TLObject.read(b)
max_read_id = Int.read(b) if flags & (1 << 0) else None
stories = TLObject.read(b)
return PeerStories(peer=peer, stories=stories, max_read_id=max_read_id)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
flags = 0
flags |= (1 << 0) if self.max_read_id is not None else 0
b.write(Int(flags))
b.write(self.peer.write())
if self.max_read_id is not None:
b.write(Int(self.max_read_id))
b.write(Vector(self.stories))
return b.getvalue()