
com.huaweicloud.sdk.meeting.v1.model.CreateVisionActiveCodeResponse 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 CreateVisionActiveCodeResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "activeCode")
private String activeCode;
public CreateVisionActiveCodeResponse withActiveCode(String activeCode) {
this.activeCode = activeCode;
return this;
}
/** 激活码
*
* @return activeCode */
public String getActiveCode() {
return activeCode;
}
public void setActiveCode(String activeCode) {
this.activeCode = activeCode;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreateVisionActiveCodeResponse createVisionActiveCodeResponse = (CreateVisionActiveCodeResponse) o;
return Objects.equals(this.activeCode, createVisionActiveCodeResponse.activeCode);
}
@Override
public int hashCode() {
return Objects.hash(activeCode);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreateVisionActiveCodeResponse {\n");
sb.append(" activeCode: ").append(toIndentedString(activeCode)).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