#631 - Partial Response : Get video details by id.

This commit is contained in:
Gopinath Langote
2017-09-14 10:09:02 +05:30
parent 5828ef9dd1
commit f38119c565
4 changed files with 99 additions and 1 deletions

View File

@ -52,4 +52,16 @@ public class Video {
this.publisher = publisher;
this.status = status;
}
@Override
public String toString() {
return "Video{" +
"id='" + id + '\'' +
", title='" + title + '\'' +
", length=" + length +
", description='" + description + '\'' +
", publisher='" + publisher + '\'' +
", status='" + status + '\'' +
'}';
}
}