You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>/// Information about the community gift sub event. Null if notice_type is not community_sub_gift./// </summary>publicsealedclassChatCommunitySubGift{/// <summary>/// The ID of the associated community gift./// </summary>publicstringId{get;set;}=string.Empty;/// <summary>/// Number of subscriptions being gifted./// </summary>publicintTotal{get;set;}/// <summary>/// The type of subscription plan being used. Possible values are:/// <para>1000 — First level of paid subscription</para>/// <para>2000 — Second level of paid subscription</para>/// <para>3000 — Third level of paid subscription</para>/// </summary>publicstringSubTier{get;set;}=string.Empty;/// <summary>/// Optional. The amount of gifts the gifter has given in this channel. Null if anonymous./// </summary>publicint?CumulativeTotal{get;set;}}
The text was updated successfully, but these errors were encountered:
According to the documentation, https://dev.twitch.tv/docs/eventsub/eventsub-reference/#channel-chat-notification-event and what is actually sent, ChatCommunitySubGift is missing a total property, e.g. should be:
The text was updated successfully, but these errors were encountered: