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

Many Summaries added. #399

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions TwitchLib.Api.Core.Enums/AuthScopesEnum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

namespace TwitchLib.Api.Core.Enums
{
/// <summary>
/// Auth Scopes
/// </summary>
public enum AuthScopes
{
/// <summary>
Expand Down Expand Up @@ -336,11 +339,19 @@ public enum AuthScopes
/// </summary>
User_Read_Follows,

/// <summary>
/// View the list of channels a user moderates.
/// </summary>
User_Read_Moderated_Channels,

/// <summary>
/// View if an authorized user is subscribed to specific channels.
/// </summary>
User_Read_Subscriptions,

/// <summary>
///
/// </summary>
User_Write_Chat,

/// <summary>
Expand Down
22 changes: 22 additions & 0 deletions TwitchLib.Api.Core.Enums/BitsLeaderboardPeriodEnum.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,33 @@
namespace TwitchLib.Api.Core.Enums
{
/// <summary>
/// Enum representing Bits Leaderboard Period
/// </summary>
public enum BitsLeaderboardPeriodEnum
{
/// <summary>
/// A Day
/// </summary>
Day,

/// <summary>
/// A Week
/// </summary>
Week,

/// <summary>
/// A Month
/// </summary>
Month,

/// <summary>
/// A Year
/// </summary>
Year,

/// <summary>
/// All-Time or everything
/// </summary>
All
}
}
14 changes: 14 additions & 0 deletions TwitchLib.Api.Core.Enums/BlockUserReasonEnum.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
namespace TwitchLib.Api.Core.Enums
{
/// <summary>
/// Enum representing the reason a User was blocked
/// </summary>
public enum BlockUserReasonEnum
{
/// <summary>
/// Spam
/// </summary>
Spam,

/// <summary>
/// Harrassment
/// </summary>
Harassment,

/// <summary>
/// Some other reason
/// </summary>
Other
}
}
10 changes: 10 additions & 0 deletions TwitchLib.Api.Core.Enums/BlockUserSourceContextEnum.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
namespace TwitchLib.Api.Core.Enums
{
/// <summary>
/// Enum representing where the source context was for the blocked user
/// </summary>
public enum BlockUserSourceContextEnum
{
/// <summary>
/// In chat
/// </summary>
Chat,

/// <summary>
/// In a whisper
/// </summary>
Whisper
}
}
38 changes: 38 additions & 0 deletions TwitchLib.Api.Core.Enums/CodeStatusEnum.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,53 @@
namespace TwitchLib.Api.Core.Enums
{
/// <summary>
/// Enum representing code status
/// </summary>
public enum CodeStatusEnum
{
/// <summary>
/// Successfully Redeemed
/// </summary>
SUCCESSFULLY_REDEEMED,

/// <summary>
/// Already Claimed
/// </summary>
ALREADY_CLAIMED,

/// <summary>
/// Expired
/// </summary>
EXPIRED,

/// <summary>
/// User not eligible
/// </summary>
USER_NOT_ELIGIBLE,

/// <summary>
/// Not found
/// </summary>
NOT_FOUND,

/// <summary>
/// Inactive
/// </summary>
INACTIVE,

/// <summary>
/// Unused
/// </summary>
UNUSED,

/// <summary>
/// Incorrect format
/// </summary>
INCORRECT_FORMAT,

/// <summary>
/// Internal error
/// </summary>
INTERNAL_ERROR
}
}
14 changes: 14 additions & 0 deletions TwitchLib.Api.Core.Enums/CustomRewardRedemptionStatusEnum.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
namespace TwitchLib.Api.Core.Enums
{
/// <summary>
/// Enum representing the custeom reward redemption status
/// </summary>
public enum CustomRewardRedemptionStatus
{
/// <summary>
/// Not completed
/// </summary>
UNFULFILLED,

/// <summary>
/// Completed
/// </summary>
FULFILLED,

/// <summary>
/// Cancelled
/// </summary>
CANCELED
}
}
22 changes: 22 additions & 0 deletions TwitchLib.Api.Core.Enums/DropEntitlementUpdateStatus.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,33 @@
namespace TwitchLib.Api.Core.Enums
{
/// <summary>
/// Enum representing drop entitlement update status
/// </summary>
public enum DropEntitlementUpdateStatus
{
/// <summary>
/// Completed
/// </summary>
SUCCESS,

/// <summary>
/// Not Authorized
/// </summary>
UNAUTHORIZED,

/// <summary>
/// Failed
/// </summary>
UPDATE_FAILED,

/// <summary>
/// Invalid Id
/// </summary>
INVALID_ID,

/// <summary>
/// Not found
/// </summary>
NOT_FOUND
}
}
14 changes: 14 additions & 0 deletions TwitchLib.Api.Core.Enums/EventSubTransportMethod.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
namespace TwitchLib.Api.Core.Enums
{
/// <summary>
/// Enum representing the eventsub transport method
/// </summary>
public enum EventSubTransportMethod
{
/// <summary>
/// Webhook
/// </summary>
Webhook,

/// <summary>
/// Websocket
/// </summary>
Websocket,

/// <summary>
/// Conduit
/// </summary>
Conduit
}
}
38 changes: 38 additions & 0 deletions TwitchLib.Api.Core.Enums/ExtensionStateEnum.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,53 @@
namespace TwitchLib.Api.Core.Enums
{
/// <summary>
/// Enum representing the extension state
/// </summary>
public enum ExtensionState
{
/// <summary>
/// In testing
/// </summary>
InTest,

/// <summary>
/// In review
/// </summary>
InReview,

/// <summary>
/// Rejected
/// </summary>
Rejected,

/// <summary>
/// Approved
/// </summary>
Approved,

/// <summary>
/// Released
/// </summary>
Released,

/// <summary>
/// Deprecated
/// </summary>
Deprecated,

/// <summary>
/// Pending action
/// </summary>
PendingAction,

/// <summary>
/// Assets uploaded
/// </summary>
AssetsUploaded,

/// <summary>
/// Deleted
/// </summary>
Deleted
}
}
14 changes: 14 additions & 0 deletions TwitchLib.Api.Core.Enums/ExtensionTypeEnum.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
namespace TwitchLib.Api.Core.Enums
{
/// <summary>
/// Enum representing the extension type
/// </summary>
public enum ExtensionType
{
/// <summary>
/// Extenion is a panel
/// </summary>
Panel,

/// <summary>
/// Extension is an overlay
/// </summary>
Overlay,

/// <summary>
/// Extension is a component
/// </summary>
Component
}
}
10 changes: 10 additions & 0 deletions TwitchLib.Api.Core.Enums/FulfillmentStatus.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
namespace TwitchLib.Api.Core.Enums
{
/// <summary>
/// Enum representing the fulfullment status
/// </summary>
public enum FulfillmentStatus
{
/// <summary>
/// Claimed
/// </summary>
CLAIMED,

/// <summary>
/// Fulfilled
/// </summary>
FULFILLED
}
}
10 changes: 10 additions & 0 deletions TwitchLib.Api.Core.Enums/ManageHeldAutoModMessageAction.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
namespace TwitchLib.Api.Core.Enums
{
/// <summary>
/// Enum representing the action related to manage held auto mod action
/// </summary>
public enum ManageHeldAutoModMessageActionEnum
{
/// <summary>
/// Allow the messsage
/// </summary>
ALLOW,

/// <summary>
/// Deny the message
/// </summary>
DENY
}
}
10 changes: 10 additions & 0 deletions TwitchLib.Api.Core.Enums/PollStatusEnum.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
namespace TwitchLib.Api.Core.Enums
{
/// <summary>
/// Enum representing the poll status
/// </summary>
public enum PollStatusEnum
{
/// <summary>
/// Poll Terminated
/// </summary>
TERMINATED,

/// <summary>
/// Poll Archived
/// </summary>
ARCHIVED
}
}
Loading
Loading