Source code for hydrogram.raw.functions.account.change_authorization_settings
# 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/>.fromioimportBytesIOfromhydrogram.raw.core.primitivesimportInt,Long,Int128,Int256,Bool,Bytes,String,Double,Vectorfromhydrogram.raw.coreimportTLObjectfromhydrogramimportrawfromtypingimportList,Optional,Any# # # # # # # # # # # # # # # # # # # # # # # ## !!! WARNING !!! ## This is a generated file! ## All changes made in this file will be lost! ## # # # # # # # # # # # # # # # # # # # # # # #
[docs]classChangeAuthorizationSettings(TLObject):# type: ignore"""Change settings related to a session. Details: - Layer: ``181`` - ID: ``40F48462`` Parameters: hash (``int`` ``64-bit``): Session ID from the authorization constructor, fetchable using account.getAuthorizations confirmed (``bool``, *optional*): If set, confirms a newly logged in session ». encrypted_requests_disabled (``bool``, *optional*): Whether to enable or disable receiving encrypted chats: if the flag is not set, the previous setting is not changed call_requests_disabled (``bool``, *optional*): Whether to enable or disable receiving calls: if the flag is not set, the previous setting is not changed Returns: ``bool`` """__slots__:List[str]=["hash","confirmed","encrypted_requests_disabled","call_requests_disabled"]ID=0x40f48462QUALNAME="functions.account.ChangeAuthorizationSettings"def__init__(self,*,hash:int,confirmed:Optional[bool]=None,encrypted_requests_disabled:Optional[bool]=None,call_requests_disabled:Optional[bool]=None)->None:self.hash=hash# longself.confirmed=confirmed# flags.3?trueself.encrypted_requests_disabled=encrypted_requests_disabled# flags.0?Boolself.call_requests_disabled=call_requests_disabled# flags.1?Bool@staticmethoddefread(b:BytesIO,*args:Any)->"ChangeAuthorizationSettings":flags=Int.read(b)confirmed=Trueifflags&(1<<3)elseFalsehash=Long.read(b)encrypted_requests_disabled=Bool.read(b)ifflags&(1<<0)elseNonecall_requests_disabled=Bool.read(b)ifflags&(1<<1)elseNonereturnChangeAuthorizationSettings(hash=hash,confirmed=confirmed,encrypted_requests_disabled=encrypted_requests_disabled,call_requests_disabled=call_requests_disabled)defwrite(self,*args)->bytes:b=BytesIO()b.write(Int(self.ID,False))flags=0flags|=(1<<3)ifself.confirmedelse0flags|=(1<<0)ifself.encrypted_requests_disabledisnotNoneelse0flags|=(1<<1)ifself.call_requests_disabledisnotNoneelse0b.write(Int(flags))b.write(Long(self.hash))ifself.encrypted_requests_disabledisnotNone:b.write(Bool(self.encrypted_requests_disabled))ifself.call_requests_disabledisnotNone:b.write(Bool(self.call_requests_disabled))returnb.getvalue()