Source code for pyrogram.raw.types.phone_call_discarded
# 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 PhoneCallDiscarded(TLObject): # type: ignore
"""Indicates a discarded phone call, see `here ยป <https://core.telegram.org/api/calls>`_ for more info on the full flow.
Constructor of :obj:`~pyrogram.raw.base.PhoneCall`.
Details:
- Layer: ``229``
- ID: ``50CA4DE1``
Parameters:
id (``int`` ``64-bit``):
Call ID
need_rating (``bool``, *optional*):
Whether the server required the user to `rate <https://core.telegram.org/method/phone.setCallRating>`_ the call
need_debug (``bool``, *optional*):
Whether the server required the client to `send <https://core.telegram.org/method/phone.saveCallDebug>`_ the libtgvoip call debug data
video (``bool``, *optional*):
Whether the call was a video call
reason (:obj:`PhoneCallDiscardReason <pyrogram.raw.base.PhoneCallDiscardReason>`, *optional*):
Why was the phone call discarded
duration (``int`` ``32-bit``, *optional*):
Duration of the phone call in seconds
"""
__slots__: List[str] = ["id", "need_rating", "need_debug", "video", "reason", "duration"]
ID = 0x50ca4de1
QUALNAME = "types.PhoneCallDiscarded"
def __init__(self, *, id: int, need_rating: Optional[bool] = None, need_debug: Optional[bool] = None, video: Optional[bool] = None, reason: "raw.base.PhoneCallDiscardReason" = None, duration: Optional[int] = None) -> None:
self.id = id # long
self.need_rating = need_rating # flags.2?true
self.need_debug = need_debug # flags.3?true
self.video = video # flags.6?true
self.reason = reason # flags.0?PhoneCallDiscardReason
self.duration = duration # flags.1?int
@staticmethod
def read(b: BytesIO, *args: Any) -> "PhoneCallDiscarded":
flags = Int.read(b)
need_rating = True if flags & (1 << 2) else False
need_debug = True if flags & (1 << 3) else False
video = True if flags & (1 << 6) else False
id = Long.read(b)
reason = TLObject.read(b) if flags & (1 << 0) else None
duration = Int.read(b) if flags & (1 << 1) else None
return PhoneCallDiscarded(id=id, need_rating=need_rating, need_debug=need_debug, video=video, reason=reason, duration=duration)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
flags = 0
flags |= (1 << 2) if self.need_rating else 0
flags |= (1 << 3) if self.need_debug else 0
flags |= (1 << 6) if self.video else 0
flags |= (1 << 0) if self.reason is not None else 0
flags |= (1 << 1) if self.duration is not None else 0
b.write(Int(flags))
b.write(Long(self.id))
if self.reason is not None:
b.write(self.reason.write())
if self.duration is not None:
b.write(Int(self.duration))
return b.getvalue()