Skip to content

Commit

Permalink
Merge pull request #469 from vimeo/add-link-property-to-folder
Browse files Browse the repository at this point in the history
Add missing property to the Folder DTO
  • Loading branch information
anthonycr authored Jan 28, 2021
2 parents 2057980 + 889059b commit 44debbb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions models/src/main/java/com/vimeo/networking2/Folder.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ data class Folder(
@Json(name = "last_user_action_event_date")
val lastUserActionEventDate: Date? = null,

/**
* The link to the folder on Vimeo.
*/
@Json(name = "link")
val link: String? = null,

/**
* The folder's metadata.
*/
Expand Down

0 comments on commit 44debbb

Please sign in to comment.