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

fix: deserialize eventsub follow goal type #620

Merged
merged 2 commits into from Aug 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -10,21 +10,21 @@ public enum GoalType {
/**
* The goal is to increase followers.
*/
@JsonAlias("follower")
@JsonAlias({ "follower", "follow" })
FOLLOWERS,

/**
* The goal is to increase subscriptions.
* This type shows the net increase or decrease in subscriptions.
*/
@JsonAlias("subscription")
@JsonAlias({ "subscription", "sub" })
SUBSCRIPTIONS,

/**
* The goal is to increase subscriptions.
* This type shows only the net increase in subscriptions (it does not account for users that stopped subscribing since the goal's inception).
*/
@JsonAlias("new_subscription")
@JsonAlias({ "new_subscription", "new_sub" })
NEW_SUBSCRIPTIONS,

/**
Expand Down