Source code for hydrogram.raw.functions.payments.update_star_gift_collection
# 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 UpdateStarGiftCollection(TLObject): # type: ignore
"""Add or remove gifts from a star gift collection », or rename the collection.
Details:
- Layer: ``223``
- ID: ``4FDDBEE7``
Parameters:
peer (:obj:`InputPeer <hydrogram.raw.base.InputPeer>`):
Peer that owns the collection.
collection_id (``int`` ``32-bit``):
Collection ID.
title (``str``, *optional*):
Title of the collection, to rename the collection.
delete_stargift (List of :obj:`InputSavedStarGift <hydrogram.raw.base.InputSavedStarGift>`, *optional*):
Can contain a list of gifts to remove from the collection.
add_stargift (List of :obj:`InputSavedStarGift <hydrogram.raw.base.InputSavedStarGift>`, *optional*):
Can contain a list of gifts to add to the collection.
order (List of :obj:`InputSavedStarGift <hydrogram.raw.base.InputSavedStarGift>`, *optional*):
Can contain the new gift order.
Returns:
:obj:`StarGiftCollection <hydrogram.raw.base.StarGiftCollection>`
"""
__slots__: List[str] = ["peer", "collection_id", "title", "delete_stargift", "add_stargift", "order"]
ID = 0x4fddbee7
QUALNAME = "functions.payments.UpdateStarGiftCollection"
def __init__(self, *, peer: "raw.base.InputPeer", collection_id: int, title: Optional[str] = None, delete_stargift: Optional[List["raw.base.InputSavedStarGift"]] = None, add_stargift: Optional[List["raw.base.InputSavedStarGift"]] = None, order: Optional[List["raw.base.InputSavedStarGift"]] = None) -> None:
self.peer = peer # InputPeer
self.collection_id = collection_id # int
self.title = title # flags.0?string
self.delete_stargift = delete_stargift # flags.1?Vector<InputSavedStarGift>
self.add_stargift = add_stargift # flags.2?Vector<InputSavedStarGift>
self.order = order # flags.3?Vector<InputSavedStarGift>
@staticmethod
def read(b: BytesIO, *args: Any) -> "UpdateStarGiftCollection":
flags = Int.read(b)
peer = TLObject.read(b)
collection_id = Int.read(b)
title = String.read(b) if flags & (1 << 0) else None
delete_stargift = TLObject.read(b) if flags & (1 << 1) else []
add_stargift = TLObject.read(b) if flags & (1 << 2) else []
order = TLObject.read(b) if flags & (1 << 3) else []
return UpdateStarGiftCollection(peer=peer, collection_id=collection_id, title=title, delete_stargift=delete_stargift, add_stargift=add_stargift, order=order)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
flags = 0
flags |= (1 << 0) if self.title is not None else 0
flags |= (1 << 1) if self.delete_stargift else 0
flags |= (1 << 2) if self.add_stargift else 0
flags |= (1 << 3) if self.order else 0
b.write(Int(flags))
b.write(self.peer.write())
b.write(Int(self.collection_id))
if self.title is not None:
b.write(String(self.title))
if self.delete_stargift is not None:
b.write(Vector(self.delete_stargift))
if self.add_stargift is not None:
b.write(Vector(self.add_stargift))
if self.order is not None:
b.write(Vector(self.order))
return b.getvalue()