Class PubSubNewFollowerEventData
- 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
ChannelName
Name of the channel that has been followed
[JsonProperty("channel_name")]
public string ChannelName { get; }
Property Value
DisplayName
Display name of the person who followed
[JsonProperty("display_name")]
public string DisplayName { get; }
Property Value
Time
Time when the follow was completed
[JsonProperty("time")]
public DateTime Time { get; }
Property Value
UserId
User ID of the person who followed
[JsonProperty("user_id")]
public string UserId { get; }
Property Value
UserName
Login name of the person who followed
[JsonProperty("user_name")]
public string UserName { get; }