Skip to content

Commit

Permalink
Merge pull request #34 from Psychoboy/chatSourceBroadcaster
Browse files Browse the repository at this point in the history
  • Loading branch information
swiftyspiffy authored Oct 25, 2024
2 parents 558d8a5 + 5ae6cfd commit ebb3669
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,31 @@ public sealed class ChannelChatMessage
/// </summary>
public string ChannelPointsCustomRewardId { get; set; } = string.Empty;

/// <summary>
/// Optional. The broadcaster user ID of the channel the message was sent from.
/// </summary>
public string SourceBroadcasterUserId { get; set; } = string.Empty;

/// <summary>
/// Optional. The user name of the broadcaster of the channel the message was sent from.
/// </summary>
public string SourceBroadcasterUserName { get; set; } = string.Empty;

/// <summary>
/// Optional. The login of the broadcaster of the channel the message was sent from.
/// </summary>
public string SourceBroadcasterUserLogin { get; set; } = string.Empty;

/// <summary>
/// Optional. The UUID that identifies the source message from the channel the message was sent from.
/// </summary>
public string SourceMessageId { get; set; } = string.Empty;

/// <summary>
/// Optional. The list of chat badges for the chatter in the channel the message was sent from.
/// </summary>
public ChatBadge[] SourceBadges { get; set; } = [];

/// <summary>
/// Returns true if viewer is a subscriber
/// </summary>
Expand Down

0 comments on commit ebb3669

Please sign in to comment.