-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #400 from Mahsaap/Summaries
Many Summaries added.
- Loading branch information
Showing
285 changed files
with
6,963 additions
and
3,912 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
14
TwitchLib.Api.Core.Enums/CustomRewardRedemptionStatusEnum.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
10
TwitchLib.Api.Core.Enums/ManageHeldAutoModMessageAction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
Oops, something went wrong.