Table of Contents

Class PubSubNewFollowerEventData

Namespace
Firesplash.UnityAssets.TwitchIntegration.DataTypes.PubSub.EventData
Assembly
Firesplash.UnityAssets.TwitchIntegration.dll

The data delivered by a new follower event The data is guessed as we had no record.

[Serializable]
[Obsolete("The NewFollower-Event is no longer available as it has been removed by twitch. It's methods will be removed in a future release.")]
public class PubSubNewFollowerEventData : PubSubEventMessageData
Inheritance
PubSubNewFollowerEventData
Inherited Members

Properties

ChannelId

ID of the channel that has been followed

[JsonProperty("channel_id")]
public string ChannelId { get; }

Property Value

string

ChannelName

Name of the channel that has been followed

[JsonProperty("channel_name")]
public string ChannelName { get; }

Property Value

string

DisplayName

Display name of the person who followed

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

Property Value

string

Time

Time when the follow was completed

[JsonProperty("time")]
public DateTime Time { get; }

Property Value

DateTime

UserId

User ID of the person who followed

[JsonProperty("user_id")]
public string UserId { get; }

Property Value

string

UserName

Login name of the person who followed

[JsonProperty("user_name")]
public string UserName { get; }

Property Value

string