Table of Contents

Class TeamMessage

Namespace
RustPlusApi.Data
Assembly
RustPlusApi.dll

A single message in the team chat.

public record TeamMessage : IEquatable<TeamMessage>
Inheritance
TeamMessage
Implements
Derived
Inherited Members

Properties

Color

Name colour of the sender.

public Color Color { get; init; }

Property Value

Color

Message

Body of the team chat message.

public string Message { get; init; }

Property Value

string

Name

Display name of the sender at the time the message was posted.

public string Name { get; init; }

Property Value

string

SteamId

Steam64 ID of the sender.

public ulong SteamId { get; init; }

Property Value

ulong

Time

UTC timestamp when the message was sent.

public DateTime Time { get; init; }

Property Value

DateTime