Type alias Member

Member: WithId<{
    name: string;
    steamId: string;
    discordId: string | null;
    description: string | null;
    avatar: string;
    avatarHash?: string;
    lastUpdated: Date;
    isPrivate: boolean;
    isMember: boolean;
    isProtected: boolean;
}>

This is a type of a single object within the collection "members". A single object describes a single member.

Important: there are several BREAKING changes here in comparison to the legacy Member format:

  • idrenamed to steamID
  • gamesremoved
  • rankingremoved
  • badgesremoved
  • urlremoved (can be constructed using member's Steam ID)

Generated using TypeDoc