Skip to content

Commit

Permalink
Merge pull request #510 from vimeo/enhancement/edit-session-min-tier
Browse files Browse the repository at this point in the history
VCANDROID-1320 Add edit_session.min_tier_for_movie field
  • Loading branch information
howardrigberg authored Aug 10, 2021
2 parents 99d8d03 + c694015 commit 7b86096
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions models/src/main/java/com/vimeo/networking2/EditSession.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import com.squareup.moshi.JsonClass
* @param resultVideoHash The result video hash.
* @param hasWatermark Whether the video has watermark.
* @param isRated Whether the video is rated.
* @param minTierForMovie The minimum required Vimeo membership for the user to be able to share or download the video.
*/
@JsonClass(generateAdapter = true)
data class EditSession(
Expand All @@ -33,4 +34,7 @@ data class EditSession(

@Json(name = "is_rated")
val isRated: Boolean? = null,

@Json(name = "min_tier_for_movie")
val minTierForMovie: String? = null,
)

0 comments on commit 7b86096

Please sign in to comment.