
com.huaweicloud.sdk.meeting.v1.model.ShowOnlineMeetingDetailRequest 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 ShowOnlineMeetingDetailRequest {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "conferenceID")
private String conferenceID;
@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;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "userUUID")
private String userUUID;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "X-Type")
private String xType;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "X-Query-Type")
private String xQueryType;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "X-Authorization-Type")
private String xAuthorizationType;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "X-Site-Id")
private String xSiteId;
public ShowOnlineMeetingDetailRequest withConferenceID(String conferenceID) {
this.conferenceID = conferenceID;
return this;
}
/** 会议ID。
*
* @return conferenceID */
public String getConferenceID() {
return conferenceID;
}
public void setConferenceID(String conferenceID) {
this.conferenceID = conferenceID;
}
public ShowOnlineMeetingDetailRequest withOffset(Integer offset) {
this.offset = offset;
return this;
}
/** 指定返回的记录索引。该值必须大于等于0; 默认为0。
*
* @return offset */
public Integer getOffset() {
return offset;
}
public void setOffset(Integer offset) {
this.offset = offset;
}
public ShowOnlineMeetingDetailRequest withLimit(Integer limit) {
this.limit = limit;
return this;
}
/** 指定返回的记录数。
*
* @return limit */
public Integer getLimit() {
return limit;
}
public void setLimit(Integer limit) {
this.limit = limit;
}
public ShowOnlineMeetingDetailRequest withSearchKey(String searchKey) {
this.searchKey = searchKey;
return this;
}
/** 用来作关键词查询的字符串。
*
* @return searchKey */
public String getSearchKey() {
return searchKey;
}
public void setSearchKey(String searchKey) {
this.searchKey = searchKey;
}
public ShowOnlineMeetingDetailRequest withUserUUID(String userUUID) {
this.userUUID = userUUID;
return this;
}
/** 用户的UUID(已在USG注册过的)。
*
* @return userUUID */
public String getUserUUID() {
return userUUID;
}
public void setUserUUID(String userUUID) {
this.userUUID = userUUID;
}
public ShowOnlineMeetingDetailRequest withXType(String xType) {
this.xType = xType;
return this;
}
/** 默认值为0。 - 0: 不区分终端和与会人。 - 1: 分页查询区分终端和与会人,结果合并返回。 - 2: 单独查询终端和与会人,结果单独返回。
*
* @return xType */
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "X-Type")
public String getXType() {
return xType;
}
public void setXType(String xType) {
this.xType = xType;
}
public ShowOnlineMeetingDetailRequest withXQueryType(String xQueryType) {
this.xQueryType = xQueryType;
return this;
}
/** 当X-Type为2时,该字段有效。默认值为0。 - 0: 查询与会人。 - 1: 查询终端。
*
* @return xQueryType */
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "X-Query-Type")
public String getXQueryType() {
return xQueryType;
}
public void setXQueryType(String xQueryType) {
this.xQueryType = xQueryType;
}
public ShowOnlineMeetingDetailRequest withXAuthorizationType(String xAuthorizationType) {
this.xAuthorizationType = xAuthorizationType;
return this;
}
/** 标识是否为第三方portal过来的请求。
*
* @return xAuthorizationType */
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "X-Authorization-Type")
public String getXAuthorizationType() {
return xAuthorizationType;
}
public void setXAuthorizationType(String xAuthorizationType) {
this.xAuthorizationType = xAuthorizationType;
}
public ShowOnlineMeetingDetailRequest withXSiteId(String xSiteId) {
this.xSiteId = xSiteId;
return this;
}
/** 用于区分到哪个HCSO站点鉴权。
*
* @return xSiteId */
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "X-Site-Id")
public String getXSiteId() {
return xSiteId;
}
public void setXSiteId(String xSiteId) {
this.xSiteId = xSiteId;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ShowOnlineMeetingDetailRequest showOnlineMeetingDetailRequest = (ShowOnlineMeetingDetailRequest) o;
return Objects.equals(this.conferenceID, showOnlineMeetingDetailRequest.conferenceID)
&& Objects.equals(this.offset, showOnlineMeetingDetailRequest.offset)
&& Objects.equals(this.limit, showOnlineMeetingDetailRequest.limit)
&& Objects.equals(this.searchKey, showOnlineMeetingDetailRequest.searchKey)
&& Objects.equals(this.userUUID, showOnlineMeetingDetailRequest.userUUID)
&& Objects.equals(this.xType, showOnlineMeetingDetailRequest.xType)
&& Objects.equals(this.xQueryType, showOnlineMeetingDetailRequest.xQueryType)
&& Objects.equals(this.xAuthorizationType, showOnlineMeetingDetailRequest.xAuthorizationType)
&& Objects.equals(this.xSiteId, showOnlineMeetingDetailRequest.xSiteId);
}
@Override
public int hashCode() {
return Objects
.hash(conferenceID, offset, limit, searchKey, userUUID, xType, xQueryType, xAuthorizationType, xSiteId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ShowOnlineMeetingDetailRequest {\n");
sb.append(" conferenceID: ").append(toIndentedString(conferenceID)).append("\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(" userUUID: ").append(toIndentedString(userUUID)).append("\n");
sb.append(" xType: ").append(toIndentedString(xType)).append("\n");
sb.append(" xQueryType: ").append(toIndentedString(xQueryType)).append("\n");
sb.append(" xAuthorizationType: ").append(toIndentedString(xAuthorizationType)).append("\n");
sb.append(" xSiteId: ").append(toIndentedString(xSiteId)).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