Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds Source Messages when the message source is from another channel #34

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading