com.aliyun.sdk.service.iot20180120.models.CreateStudioAppDomainOpenResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-iot20180120 Show documentation
Show all versions of alibabacloud-iot20180120 Show documentation
Alibaba Cloud Iot (20180120) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.iot20180120.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateStudioAppDomainOpenResponseBody} extends {@link TeaModel}
*
* CreateStudioAppDomainOpenResponseBody
*/
public class CreateStudioAppDomainOpenResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("ErrorMessage")
private String errorMessage;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private CreateStudioAppDomainOpenResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.errorMessage = builder.errorMessage;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static CreateStudioAppDomainOpenResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private Data data;
private String errorMessage;
private String requestId;
private Boolean success;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* ErrorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public CreateStudioAppDomainOpenResponseBody build() {
return new CreateStudioAppDomainOpenResponseBody(this);
}
}
public static class Data extends TeaModel {
@NameInMap("AppId")
private String appId;
@NameInMap("Host")
private String host;
@NameInMap("Id")
private Integer id;
@NameInMap("IsBeian")
private String isBeian;
@NameInMap("ProjectId")
private String projectId;
@NameInMap("Protocol")
private String protocol;
@NameInMap("TenantId")
private String tenantId;
private Data(Builder builder) {
this.appId = builder.appId;
this.host = builder.host;
this.id = builder.id;
this.isBeian = builder.isBeian;
this.projectId = builder.projectId;
this.protocol = builder.protocol;
this.tenantId = builder.tenantId;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return appId
*/
public String getAppId() {
return this.appId;
}
/**
* @return host
*/
public String getHost() {
return this.host;
}
/**
* @return id
*/
public Integer getId() {
return this.id;
}
/**
* @return isBeian
*/
public String getIsBeian() {
return this.isBeian;
}
/**
* @return projectId
*/
public String getProjectId() {
return this.projectId;
}
/**
* @return protocol
*/
public String getProtocol() {
return this.protocol;
}
/**
* @return tenantId
*/
public String getTenantId() {
return this.tenantId;
}
public static final class Builder {
private String appId;
private String host;
private Integer id;
private String isBeian;
private String projectId;
private String protocol;
private String tenantId;
/**
* AppId.
*/
public Builder appId(String appId) {
this.appId = appId;
return this;
}
/**
* Host.
*/
public Builder host(String host) {
this.host = host;
return this;
}
/**
* Id.
*/
public Builder id(Integer id) {
this.id = id;
return this;
}
/**
* IsBeian.
*/
public Builder isBeian(String isBeian) {
this.isBeian = isBeian;
return this;
}
/**
* ProjectId.
*/
public Builder projectId(String projectId) {
this.projectId = projectId;
return this;
}
/**
* Protocol.
*/
public Builder protocol(String protocol) {
this.protocol = protocol;
return this;
}
/**
* TenantId.
*/
public Builder tenantId(String tenantId) {
this.tenantId = tenantId;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy