Source code for hydrogram.raw.functions.messages.toggle_todo_completed
# Hydrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2023-present Hydrogram <https://hydrogram.org>
#
# This file is part of Hydrogram.
#
# Hydrogram 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.
#
# Hydrogram 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 Hydrogram. If not, see <http://www.gnu.org/licenses/>.
from io import BytesIO
from hydrogram.raw.core.primitives import Int, Long, Int128, Int256, Bool, Bytes, String, Double, Vector
from hydrogram.raw.core import TLObject
from hydrogram 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 ToggleTodoCompleted(TLObject): # type: ignore
"""Mark one or more items of a todo list » as completed or not completed.
Details:
- Layer: ``223``
- ID: ``D3E03124``
Parameters:
peer (:obj:`InputPeer <hydrogram.raw.base.InputPeer>`):
Peer where the todo list was posted.
msg_id (``int`` ``32-bit``):
ID of the message with the todo list.
completed (List of ``int`` ``32-bit``):
Items to mark as completed.
incompleted (List of ``int`` ``32-bit``):
Items to mark as not completed.
Returns:
:obj:`Updates <hydrogram.raw.base.Updates>`
"""
__slots__: List[str] = ["peer", "msg_id", "completed", "incompleted"]
ID = 0xd3e03124
QUALNAME = "functions.messages.ToggleTodoCompleted"
def __init__(self, *, peer: "raw.base.InputPeer", msg_id: int, completed: List[int], incompleted: List[int]) -> None:
self.peer = peer # InputPeer
self.msg_id = msg_id # int
self.completed = completed # Vector<int>
self.incompleted = incompleted # Vector<int>
@staticmethod
def read(b: BytesIO, *args: Any) -> "ToggleTodoCompleted":
# No flags
peer = TLObject.read(b)
msg_id = Int.read(b)
completed = TLObject.read(b, Int)
incompleted = TLObject.read(b, Int)
return ToggleTodoCompleted(peer=peer, msg_id=msg_id, completed=completed, incompleted=incompleted)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
# No flags
b.write(self.peer.write())
b.write(Int(self.msg_id))
b.write(Vector(self.completed, Int))
b.write(Vector(self.incompleted, Int))
return b.getvalue()