Source code for hydrogram.raw.types.timezone
# 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 Timezone(TLObject): # type: ignore
"""Timezone information.
Constructor of :obj:`~hydrogram.raw.base.Timezone`.
Details:
- Layer: ``223``
- ID: ``FF9289F5``
Parameters:
id (``str``):
Unique timezone ID.
name (``str``):
Human-readable and localized timezone name.
utc_offset (``int`` ``32-bit``):
UTC offset in seconds, which may be displayed in hh:mm format by the client together with the human-readable name (i.e. $name UTC -01:00).
"""
__slots__: List[str] = ["id", "name", "utc_offset"]
ID = 0xff9289f5
QUALNAME = "types.Timezone"
def __init__(self, *, id: str, name: str, utc_offset: int) -> None:
self.id = id # string
self.name = name # string
self.utc_offset = utc_offset # int
@staticmethod
def read(b: BytesIO, *args: Any) -> "Timezone":
# No flags
id = String.read(b)
name = String.read(b)
utc_offset = Int.read(b)
return Timezone(id=id, name=name, utc_offset=utc_offset)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
# No flags
b.write(String(self.id))
b.write(String(self.name))
b.write(Int(self.utc_offset))
return b.getvalue()