
com.huaweicloud.sdk.meeting.v1.model.CreatePortalRefNonceResponse Maven / Gradle / Ivy
package com.huaweicloud.sdk.meeting.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.huaweicloud.sdk.core.SdkResponse;
import java.util.Objects;
/** Response Object */
public class CreatePortalRefNonceResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "nonce")
private String nonce;
public CreatePortalRefNonceResponse withNonce(String nonce) {
this.nonce = nonce;
return this;
}
/** 用于跳转登录的nonce信息。 说明: 通过链接https://bmeeting.huaweicloud.com/?lang=zh-CN&nonce=xxxxxxxxxxxxx#/login进行免登陆跳转。
*
* @return nonce */
public String getNonce() {
return nonce;
}
public void setNonce(String nonce) {
this.nonce = nonce;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreatePortalRefNonceResponse createPortalRefNonceResponse = (CreatePortalRefNonceResponse) o;
return Objects.equals(this.nonce, createPortalRefNonceResponse.nonce);
}
@Override
public int hashCode() {
return Objects.hash(nonce);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreatePortalRefNonceResponse {\n");
sb.append(" nonce: ").append(toIndentedString(nonce)).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