You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.5 KiB

from disco.types.base import SlottedModel, Field, lazy_datetime
from disco.types.user import User
from disco.types.guild import Guild
from disco.types.channel import Channel
class Invite(SlottedModel):
"""
An invite object.
Attributes
----------
code : str
The invite code.
inviter : :class:`disco.types.user.User`
The user who created this invite.
guild : :class:`disco.types.guild.Guild`
The guild this invite is for.
channel : :class:`disco.types.channel.Channel`
The channel this invite is for.
max_age : int
The time after this invite's creation at which it expires.
max_uses : int
The maximum number of uses.
uses : int
The current number of times the invite was used.
temporary : bool
Whether this invite only grants temporary membership.
created_at : datetime
When this invite was created.
"""
code = Field(str)
inviter = Field(User)
guild = Field(Guild)
channel = Field(Channel)
max_age = Field(int)
max_uses = Field(int)
uses = Field(int)
temporary = Field(bool)
created_at = Field(lazy_datetime)
@classmethod
def create(cls, channel, max_age=86400, max_uses=0, temporary=False, unique=False):
return channel.client.api.channels_invites_create(
channel.id,
max_age=max_age,
max_uses=max_uses,
temporary=temporary,
unique=unique)
def delete(self):
self.client.api.invites_delete(self.code)