diff options
| author | Pinapelz <donaldshan1@outlook.com> | 2023-04-07 00:04:37 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-07 00:04:37 -0700 |
| commit | 9d60247c626b00da27478cb9d687eae142762a8c (patch) | |
| tree | 96bea086e45004f1ad2082b39f1cc4bee5022954 /src/main/java/com/pina/query/VideosByChannelIDQueryBuilder.java | |
| parent | 2c7e0a70fd8a569c0dac9a000f09cce255281be1 (diff) | |
Delete src/main/java directory
Diffstat (limited to 'src/main/java/com/pina/query/VideosByChannelIDQueryBuilder.java')
| -rw-r--r-- | src/main/java/com/pina/query/VideosByChannelIDQueryBuilder.java | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/src/main/java/com/pina/query/VideosByChannelIDQueryBuilder.java b/src/main/java/com/pina/query/VideosByChannelIDQueryBuilder.java deleted file mode 100644 index 0ba9963..0000000 --- a/src/main/java/com/pina/query/VideosByChannelIDQueryBuilder.java +++ /dev/null @@ -1,78 +0,0 @@ -package com.pina.query; - -public class VideosByChannelIDQueryBuilder { - /*** - * Used to get the videos of a single channel when given the channel ID - */ - private String channelId; - private String type; - private String include; - private String lang; - private Integer limit; - private Integer offset; - private String paginated; - - public VideosByChannelIDQueryBuilder setChannelId(String channelId) { - this.channelId = channelId; - return this; - } - - public VideosByChannelIDQueryBuilder setType(String type) { - this.type = type; - return this; - } - - public VideosByChannelIDQueryBuilder setInclude(String include) { - this.include = include; - return this; - } - - public VideosByChannelIDQueryBuilder setLang(String lang) { - this.lang = lang; - return this; - } - - public VideosByChannelIDQueryBuilder setLimit(Integer limit) { - this.limit = limit; - return this; - } - - public VideosByChannelIDQueryBuilder setOffset(Integer offset) { - this.offset = offset; - return this; - } - - public VideosByChannelIDQueryBuilder setPaginated(String paginated) { - this.paginated = paginated; - return this; - } - - public String getChannelId() { - return channelId; - } - - public String getType() { - return type; - } - - public String getInclude() { - return include; - } - - public String getLang() { - return lang; - } - - public Integer getLimit() { - return limit; - } - - public Integer getOffset() { - return offset; - } - - public String getPaginated() { - return paginated; - } - -} |
