
com.huaweicloud.sdk.meeting.v1.model.SearchQosOnlineMeetingsRequest Maven / Gradle / Ivy
package com.huaweicloud.sdk.meeting.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/** Request Object */
public class SearchQosOnlineMeetingsRequest {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "offset")
private Integer offset;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "limit")
private Integer limit;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "searchKey")
private String searchKey;
public SearchQosOnlineMeetingsRequest withOffset(Integer offset) {
this.offset = offset;
return this;
}
/** 查询偏移量。 * 取值:大于等于0,默认值为0。 * 小于最小值0时,系统设置为0。 * 大于等于最大条目数量,则返回最后一页的数据。
*
* @return offset */
public Integer getOffset() {
return offset;
}
public void setOffset(Integer offset) {
this.offset = offset;
}
public SearchQosOnlineMeetingsRequest withLimit(Integer limit) {
this.limit = limit;
return this;
}
/** 查询的条目数量。 * 取值:1-500,默认值为20。 * 小于最小值1时,系统设置为1。 * 大于最大值500时,系统设置为500。
*
* @return limit */
public Integer getLimit() {
return limit;
}
public void setLimit(Integer limit) {
this.limit = limit;
}
public SearchQosOnlineMeetingsRequest withSearchKey(String searchKey) {
this.searchKey = searchKey;
return this;
}
/** 根据会议主题,预定人和会议id作为关键词,模糊查询会议列表。最大不超过512个字节。
*
* @return searchKey */
public String getSearchKey() {
return searchKey;
}
public void setSearchKey(String searchKey) {
this.searchKey = searchKey;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SearchQosOnlineMeetingsRequest searchQosOnlineMeetingsRequest = (SearchQosOnlineMeetingsRequest) o;
return Objects.equals(this.offset, searchQosOnlineMeetingsRequest.offset)
&& Objects.equals(this.limit, searchQosOnlineMeetingsRequest.limit)
&& Objects.equals(this.searchKey, searchQosOnlineMeetingsRequest.searchKey);
}
@Override
public int hashCode() {
return Objects.hash(offset, limit, searchKey);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SearchQosOnlineMeetingsRequest {\n");
sb.append(" offset: ").append(toIndentedString(offset)).append("\n");
sb.append(" limit: ").append(toIndentedString(limit)).append("\n");
sb.append(" searchKey: ").append(toIndentedString(searchKey)).append("\n");
sb.append("}");
return sb.toString();
}
/** Convert the given object to string with each line indented by 4 spaces (except the first line). */
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy