com.aliyun.sdk.service.bpstudio20210931.models.GetApplicationVariables4FailResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-bpstudio20210931 Show documentation
Show all versions of alibabacloud-bpstudio20210931 Show documentation
Alibaba Cloud BPStudio (20210931) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.bpstudio20210931.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetApplicationVariables4FailResponseBody} extends {@link TeaModel}
*
* GetApplicationVariables4FailResponseBody
*/
public class GetApplicationVariables4FailResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Code")
private Integer code;
@com.aliyun.core.annotation.NameInMap("Data")
private java.util.List < Data> data;
@com.aliyun.core.annotation.NameInMap("Message")
private String message;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private GetApplicationVariables4FailResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static GetApplicationVariables4FailResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public Integer getCode() {
return this.code;
}
/**
* @return data
*/
public java.util.List < Data> getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Integer code;
private java.util.List < Data> data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(Integer code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(java.util.List < Data> data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public GetApplicationVariables4FailResponseBody build() {
return new GetApplicationVariables4FailResponseBody(this);
}
}
public static class Data extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Attribute")
private String attribute;
@com.aliyun.core.annotation.NameInMap("DefaultValue")
private String defaultValue;
@com.aliyun.core.annotation.NameInMap("PlaceHolder")
private String placeHolder;
@com.aliyun.core.annotation.NameInMap("Region")
private String region;
@com.aliyun.core.annotation.NameInMap("Value")
private String value;
@com.aliyun.core.annotation.NameInMap("Variable")
private String variable;
private Data(Builder builder) {
this.attribute = builder.attribute;
this.defaultValue = builder.defaultValue;
this.placeHolder = builder.placeHolder;
this.region = builder.region;
this.value = builder.value;
this.variable = builder.variable;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return attribute
*/
public String getAttribute() {
return this.attribute;
}
/**
* @return defaultValue
*/
public String getDefaultValue() {
return this.defaultValue;
}
/**
* @return placeHolder
*/
public String getPlaceHolder() {
return this.placeHolder;
}
/**
* @return region
*/
public String getRegion() {
return this.region;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
/**
* @return variable
*/
public String getVariable() {
return this.variable;
}
public static final class Builder {
private String attribute;
private String defaultValue;
private String placeHolder;
private String region;
private String value;
private String variable;
/**
* Attribute.
*/
public Builder attribute(String attribute) {
this.attribute = attribute;
return this;
}
/**
* DefaultValue.
*/
public Builder defaultValue(String defaultValue) {
this.defaultValue = defaultValue;
return this;
}
/**
* PlaceHolder.
*/
public Builder placeHolder(String placeHolder) {
this.placeHolder = placeHolder;
return this;
}
/**
* Region.
*/
public Builder region(String region) {
this.region = region;
return this;
}
/**
* Value.
*/
public Builder value(String value) {
this.value = value;
return this;
}
/**
* Variable.
*/
public Builder variable(String variable) {
this.variable = variable;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}