
com.huaweicloud.sdk.meeting.v1.model.CancelRecurringMeetingRequest 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 CancelRecurringMeetingRequest {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "X-Authorization-Type")
private String xAuthorizationType;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "userUUID")
private String userUUID;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "X-Site-Id")
private String xSiteId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "conferenceID")
private String conferenceID;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "type")
private Integer type;
public CancelRecurringMeetingRequest 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 CancelRecurringMeetingRequest 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 CancelRecurringMeetingRequest 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;
}
public CancelRecurringMeetingRequest withConferenceID(String conferenceID) {
this.conferenceID = conferenceID;
return this;
}
/** 会议标识
*
* @return conferenceID */
public String getConferenceID() {
return conferenceID;
}
public void setConferenceID(String conferenceID) {
this.conferenceID = conferenceID;
}
public CancelRecurringMeetingRequest withType(Integer type) {
this.type = type;
return this;
}
/** 取消会议操作类型,1表示需要结束在线会议
*
* @return type */
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CancelRecurringMeetingRequest cancelRecurringMeetingRequest = (CancelRecurringMeetingRequest) o;
return Objects.equals(this.xAuthorizationType, cancelRecurringMeetingRequest.xAuthorizationType)
&& Objects.equals(this.userUUID, cancelRecurringMeetingRequest.userUUID)
&& Objects.equals(this.xSiteId, cancelRecurringMeetingRequest.xSiteId)
&& Objects.equals(this.conferenceID, cancelRecurringMeetingRequest.conferenceID)
&& Objects.equals(this.type, cancelRecurringMeetingRequest.type);
}
@Override
public int hashCode() {
return Objects.hash(xAuthorizationType, userUUID, xSiteId, conferenceID, type);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CancelRecurringMeetingRequest {\n");
sb.append(" xAuthorizationType: ").append(toIndentedString(xAuthorizationType)).append("\n");
sb.append(" userUUID: ").append(toIndentedString(userUUID)).append("\n");
sb.append(" xSiteId: ").append(toIndentedString(xSiteId)).append("\n");
sb.append(" conferenceID: ").append(toIndentedString(conferenceID)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).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