Table of Contents

Class Chatter

Namespace
Firesplash.UnityAssets.TwitchIntegration.DataTypes.IRC.Metadata
Assembly
Firesplash.UnityAssets.TwitchIntegration.dll

The metadata of the sender/receiver of an IRC message

[Serializable]
public class Chatter
Inheritance
Chatter
Inherited Members

Properties

Badges

The badges the Chatter has

[JsonProperty("badges")]
public List<UserBadge> Badges { get; }

Property Value

List<UserBadge>

Color

A hexadecimal color string like #FF00FF which indicates the Chatter's chosen name color. This can be null or empty string if it has never been set.

[JsonProperty("color")]
public string Color { get; }

Property Value

string

DisplayName

The display name of the Chatter

[JsonProperty("display_name")]
public string DisplayName { get; }

Property Value

string

Id

The user id of the Chatter

[JsonProperty("id")]
public string Id { get; }

Property Value

string

Username

The login name of the Chatter

[JsonProperty("username")]
public string Username { get; }

Property Value

string