Struct GuildLogData
One guild activity log row.
public struct GuildLogData
- Inherited Members
Constructors
GuildLogData(long, long, GuildLogEventType, long, long, string, DateTime)
Initializes a new guild log row.
public GuildLogData(long id, long guildID, GuildLogEventType eventType, long actorCharacterID, long targetCharacterID, string detail, DateTime timeCreated)
Parameters
idlongPrimary key, or zero when not yet written.
guildIDlongThe guild the event belongs to.
eventTypeGuildLogEventTypeWhat happened.
actorCharacterIDlongThe acting character, or zero.
targetCharacterIDlongThe subject character, or zero.
detailstringOptional short detail.
timeCreatedDateTimeWhen the event happened (UTC).
Fields
ActorCharacterID
The character who performed the action, or zero.
public readonly long ActorCharacterID
Field Value
Detail
Optional short detail, such as a rank name. May be empty.
public readonly string Detail
Field Value
EventType
What happened.
public readonly GuildLogEventType EventType
Field Value
GuildID
The guild the event belongs to.
public readonly long GuildID
Field Value
ID
Primary key. Zero for a row that has not been written yet.
public readonly long ID
Field Value
TargetCharacterID
The character the action was performed on, or zero.
public readonly long TargetCharacterID
Field Value
TimeCreated
When the event happened (UTC).
public readonly DateTime TimeCreated