Skip to content

Commit

Permalink
Fix the review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Baltser committed Jun 23, 2020
1 parent daf9602 commit d3f77da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/src/main/java/com/vimeo/networking2/VideoStatus.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ data class VideoStatus(
* The percentage of the transcoding process that is complete.
*/
@Json(name = "progress")
val progress: Int? = 0,
val progress: Int? = null,

/**
* The remaining time in seconds before transcoding is complete.
*/
@Json(name = "time_left")
val timeLeft: Long? = 0
val timeLeft: Long? = null
) : Serializable {

companion object {
Expand Down

0 comments on commit d3f77da

Please sign in to comment.