"""The MIT License (MIT)Copyright (c) 2015-2021 RapptzCopyright (c) 2021-present Pycord DevelopmentPermission is hereby granted, free of charge, to any person obtaining acopy of this software and associated documentation files (the "Software"),to deal in the Software without restriction, including without limitationthe rights to use, copy, modify, merge, publish, distribute, sublicense,and/or sell copies of the Software, and to permit persons to whom theSoftware is furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included inall copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESSOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISINGFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHERDEALINGS IN THE SOFTWARE."""from__future__importannotationsfromtypingimportTYPE_CHECKING,SupportsInt,Unionfrom.importutilsfrom.mixinsimportHashableifTYPE_CHECKING:importdatetimeSupportsIntCast=Union[SupportsInt,str,bytes,bytearray]__all__=("Object",)
[docs]classObject(Hashable):"""Represents a generic Discord object. The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class. There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare. .. container:: operations .. describe:: x == y Checks if two objects are equal. .. describe:: x != y Checks if two objects are not equal. .. describe:: hash(x) Returns the object's hash. Attributes ---------- id: :class:`int` The ID of the object. """def__init__(self,id:SupportsIntCast):try:id=int(id)exceptValueError:raiseTypeError(f"id parameter must be convertible to int not {id.__class__!r}")fromNoneelse:self.id=iddef__repr__(self)->str:returnf"<Object id={self.id!r}>"@propertydefcreated_at(self)->datetime.datetime:"""Returns the snowflake's creation time in UTC."""returnutils.snowflake_time(self.id)@propertydefworker_id(self)->int:"""Returns the worker id that made the snowflake."""return(self.id&0x3E0000)>>17@propertydefprocess_id(self)->int:"""Returns the process id that made the snowflake."""return(self.id&0x1F000)>>12@propertydefincrement_id(self)->int:"""Returns the increment id that made the snowflake."""returnself.id&0xFFF