Class ClanMember
- Namespace
- RustPlusApi.Data.Clans
- Assembly
- RustPlusApi.dll
A member of a clan.
public sealed record ClanMember : IEquatable<ClanMember>
- Inheritance
-
ClanMember
- Implements
- Inherited Members
Properties
Joined
UTC timestamp when the member joined the clan.
public DateTime Joined { get; init; }
Property Value
LastSeen
UTC timestamp when the member was last seen online.
public DateTime LastSeen { get; init; }
Property Value
Notes
Officer notes attached to this member, if any.
public string? Notes { get; init; }
Property Value
Online
true if the member is currently online.
public bool? Online { get; init; }
Property Value
- bool?
RoleId
ID of the role assigned to this member (see RoleId).
public int RoleId { get; init; }
Property Value
SteamId
Steam64 ID of the member.
public ulong SteamId { get; init; }