|
@ -268,6 +268,8 @@ class Guild(SlottedModel, Permissible): |
|
|
The id of the afk channel. |
|
|
The id of the afk channel. |
|
|
embed_channel_id : snowflake |
|
|
embed_channel_id : snowflake |
|
|
The id of the embed channel. |
|
|
The id of the embed channel. |
|
|
|
|
|
system_channel_id : snowflake |
|
|
|
|
|
The id of the system channel. |
|
|
name : str |
|
|
name : str |
|
|
Guild's name. |
|
|
Guild's name. |
|
|
icon : str |
|
|
icon : str |
|
@ -301,6 +303,7 @@ class Guild(SlottedModel, Permissible): |
|
|
owner_id = Field(snowflake) |
|
|
owner_id = Field(snowflake) |
|
|
afk_channel_id = Field(snowflake) |
|
|
afk_channel_id = Field(snowflake) |
|
|
embed_channel_id = Field(snowflake) |
|
|
embed_channel_id = Field(snowflake) |
|
|
|
|
|
system_channel_id = Field(snowflake) |
|
|
name = Field(text) |
|
|
name = Field(text) |
|
|
icon = Field(text) |
|
|
icon = Field(text) |
|
|
splash = Field(text) |
|
|
splash = Field(text) |
|
@ -468,6 +471,10 @@ class Guild(SlottedModel, Permissible): |
|
|
def splash_url(self): |
|
|
def splash_url(self): |
|
|
return self.get_splash_url() |
|
|
return self.get_splash_url() |
|
|
|
|
|
|
|
|
|
|
|
@property |
|
|
|
|
|
def system_channel(self): |
|
|
|
|
|
return self.channels.get(self.system_channel_id) |
|
|
|
|
|
|
|
|
@property |
|
|
@property |
|
|
def audit_log(self): |
|
|
def audit_log(self): |
|
|
return self.audit_log_iter() |
|
|
return self.audit_log_iter() |
|
|