PartialMember#

Note

This is a Partial Object which means it doesn’t contain regular data. You should threat it as a reference to a object rather than a normal one. See: Partial Objects for detailed information.

class corkus.objects.PartialMember#

Represents a Partial version of Member.

property rank#

Player’s rank in guild.

Return type:

GuildRank

async fetch(timeout=None)#

Fetch more guild data about this member from API.

Warning

This function is a API call. See: Partial Objects for detailed information.

Parameters:

timeout (Optional[int]) – Optionally override default timeout.

Return type:

Member

property guild#

The guild that this member is a part of.

Return type:

PartialGuild

property player#

Reduce to to PartialPlayer. Usefull when you want to fetch player information not member information.

Return type:

PartialPlayer

property username#

Minecraft username of player.

Return type:

Optional[str]

property uuid#

Minecraft UUID of player.

Return type:

Optional[CorkusUUID]