Skip to content

Commit

Permalink
Merge pull request #512 from vimeo/billing-period-fix
Browse files Browse the repository at this point in the history
Fix BillingPeriodType values
  • Loading branch information
WhosNickDoglio authored Aug 24, 2021
2 parents d85df78 + a312ebe commit b4addb0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Change Log
==========

Version 2.0.5 *(2021-08-24)*
----------------------------
- Fixed incorrect values for `BillingPeriodType`.

Version 2.0.4 *(2021-08-10)*
----------------------------
- Added `minTierForMovie` field to `EditSession`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ object ApiConstants {

const val SSL_PUBLIC_KEY = "sha256/5kJvNEMw0KjrCAu7eXY5HZdvyCS13BbA0VJG1RSP91w="

const val SDK_VERSION = "2.0.4"
const val SDK_VERSION = "2.0.5"

const val NONE = -1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ enum class BillingPeriodType(override val value: String?) : StringValue {
/**
* User will be charged monthly.
*/
MONTHLY("monthly"),
MONTHLY("month"),

/**
* User will be charged yearly.
*/
YEARLY("yearly"),
YEARLY("year"),

/**
* Unknown billing period.
Expand Down

0 comments on commit b4addb0

Please sign in to comment.