Created
May 30, 2020 19:35
-
-
Save prolongservices/c4d82aed2165a550a811f25b1cea947c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.edablogs.tubelite.model.youtube; | |
| import com.google.gson.annotations.Expose; | |
| import com.google.gson.annotations.SerializedName; | |
| public class ItemLatest { | |
| @SerializedName("kind") | |
| @Expose | |
| private String kind; | |
| @SerializedName("etag") | |
| @Expose | |
| private String etag; | |
| @SerializedName("id") | |
| @Expose | |
| private Id id; | |
| @SerializedName("snippet") | |
| @Expose | |
| private Snippet snippet; | |
| /** | |
| * | |
| * @return | |
| * The kind | |
| */ | |
| public String getKind() { | |
| return kind; | |
| } | |
| /** | |
| * | |
| * @param kind | |
| * The kind | |
| */ | |
| public void setKind(String kind) { | |
| this.kind = kind; | |
| } | |
| /** | |
| * | |
| * @return | |
| * The etag | |
| */ | |
| public String getEtag() { | |
| return etag; | |
| } | |
| /** | |
| * | |
| * @param etag | |
| * The etag | |
| */ | |
| public void setEtag(String etag) { | |
| this.etag = etag; | |
| } | |
| /** | |
| * | |
| * @return | |
| * The id | |
| */ | |
| public Id getId() { | |
| return id; | |
| } | |
| /** | |
| * | |
| * @param id | |
| * The id | |
| */ | |
| public void setId(Id id) { | |
| this.id = id; | |
| } | |
| /** | |
| * | |
| * @return | |
| * The snippet | |
| */ | |
| public Snippet getSnippet() { | |
| return snippet; | |
| } | |
| /** | |
| * | |
| * @param snippet | |
| * The snippet | |
| */ | |
| public void setSnippet(Snippet snippet) { | |
| this.snippet = snippet; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment