Clan

/// Unique identifier for the clan.
public string ClanId;
/// The name of the clan.
public string Name;
/// Human readable unique identifier for the clan.
public string HumanUid;
/// The code for invite.
public string InviteCode;
/// Current clan members.
public int MemberCount;
/// Clan member limitation.
public int MemberLimit;
/// Clan member role for requested player.
public string MemberRole;
/// Clan flag url
public string Image;
/// Clan is closed to invite new members.
public bool Closed;
/// List of clan members.
public List<ClanMember> Members;
/// The optional custom metadata.
public Dictionary<string, string> Metadata;

Last updated