diff options
| author | Pinapelz <donaldshan1@outlook.com> | 2023-04-04 22:19:22 -0700 |
|---|---|---|
| committer | Pinapelz <donaldshan1@outlook.com> | 2023-04-04 22:19:22 -0700 |
| commit | c0f3a15069c0af41e9196779c829fb545ba870e6 (patch) | |
| tree | a2d5a7f999892c723e4866b237da9821988c5a9f /src/main/java/com/pina/query/LiveStreamsQueryBuilder.java | |
| parent | 4b94e48529e41ef90e3ee6ccbd90668678f1d12d (diff) | |
Implemented getChannel method and added javadoc to VideoQueryBuilder
Diffstat (limited to 'src/main/java/com/pina/query/LiveStreamsQueryBuilder.java')
| -rw-r--r-- | src/main/java/com/pina/query/LiveStreamsQueryBuilder.java | 154 |
1 files changed, 0 insertions, 154 deletions
diff --git a/src/main/java/com/pina/query/LiveStreamsQueryBuilder.java b/src/main/java/com/pina/query/LiveStreamsQueryBuilder.java deleted file mode 100644 index ca7f86e..0000000 --- a/src/main/java/com/pina/query/LiveStreamsQueryBuilder.java +++ /dev/null @@ -1,154 +0,0 @@ -package com.pina.query; - -public class LiveStreamsQueryBuilder { - private String channelId; - private String id; - private String include; - private String lang; - private Integer limit; - private Integer maxUpcomingHours; - private String mentionedChannelId; - private Integer offset; - private String order; - private String org; - private String paginated; - private String sort; - private String status; - private String topic; - private String type; - - public LiveStreamsQueryBuilder setChannelId(String channelId) { - this.channelId = channelId; - return this; - } - - public LiveStreamsQueryBuilder setId(String id) { - this.id = id; - return this; - } - - public LiveStreamsQueryBuilder setInclude(String include) { - this.include = include; - return this; - } - - public LiveStreamsQueryBuilder setLang(String lang) { - this.lang = lang; - return this; - } - - public LiveStreamsQueryBuilder setLimit(Integer limit) { - this.limit = limit; - return this; - } - - public LiveStreamsQueryBuilder setMaxUpcomingHours(Integer maxUpcomingHours) { - this.maxUpcomingHours = maxUpcomingHours; - return this; - } - - public LiveStreamsQueryBuilder setMentionedChannelId(String mentionedChannelId) { - this.mentionedChannelId = mentionedChannelId; - return this; - } - - public LiveStreamsQueryBuilder setOffset(Integer offset) { - this.offset = offset; - return this; - } - - public LiveStreamsQueryBuilder setOrder(String order) { - this.order = order; - return this; - } - - public LiveStreamsQueryBuilder setOrg(String org) { - this.org = org; - return this; - } - - public LiveStreamsQueryBuilder setPaginated(String paginated) { - this.paginated = paginated; - return this; - } - - public LiveStreamsQueryBuilder setSort(String sort) { - this.sort = sort; - return this; - } - - public LiveStreamsQueryBuilder setStatus(String status) { - this.status = status; - return this; - } - - public LiveStreamsQueryBuilder setTopic(String topic) { - this.topic = topic; - return this; - } - - public LiveStreamsQueryBuilder setType(String type) { - this.type = type; - return this; - } - - public String getChannelId() { - return channelId; - } - - public String getId() { - return id; - } - - public String getInclude() { - return include; - } - - public String getLang() { - return lang; - } - - public Integer getLimit() { - return limit; - } - - public Integer getMaxUpcomingHours() { - return maxUpcomingHours; - } - - public String getMentionedChannelId() { - return mentionedChannelId; - } - - public Integer getOffset() { - return offset; - } - - public String getOrder() { - return order; - } - - public String getOrg() { - return org; - } - - public String getPaginated() { - return paginated; - } - - public String getSort() { - return sort; - } - - public String getStatus() { - return status; - } - - public String getTopic() { - return topic; - } - - public String getType() { - return type; - } -}
\ No newline at end of file |
