index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/CreateSimulationTaskResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link CreateSimulationTaskResponseBody} extends {@link TeaModel} * * <p>CreateSimulationTaskResponseBody</p> */ public class CreateSimulationTaskResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private CreateSimulationTaskResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static CreateSimulationTaskResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(CreateSimulationTaskResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public CreateSimulationTaskResponseBody build() { return new CreateSimulationTaskResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeepCopyRuleRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeepCopyRuleRequest} extends {@link RequestModel} * * <p>DeepCopyRuleRequest</p> */ public class DeepCopyRuleRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CreateType") private String createType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CustInsertInfo") private String custInsertInfo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CustWriteInfo") private String custWriteInfo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ExpressionVariableInfo") private String expressionVariableInfo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("QueryExpressionVariableInfo") private String queryExpressionVariableInfo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("RegId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("SourceRuleId") private String sourceRuleId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("SourceRuleIds") private String sourceRuleIds; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("TargetEventCode") private String targetEventCode; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("TargetEventName") private String targetEventName; private DeepCopyRuleRequest(Builder builder) { super(builder); this.createType = builder.createType; this.custInsertInfo = builder.custInsertInfo; this.custWriteInfo = builder.custWriteInfo; this.expressionVariableInfo = builder.expressionVariableInfo; this.lang = builder.lang; this.queryExpressionVariableInfo = builder.queryExpressionVariableInfo; this.regId = builder.regId; this.sourceRuleId = builder.sourceRuleId; this.sourceRuleIds = builder.sourceRuleIds; this.targetEventCode = builder.targetEventCode; this.targetEventName = builder.targetEventName; } public static Builder builder() { return new Builder(); } public static DeepCopyRuleRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return createType */ public String getCreateType() { return this.createType; } /** * @return custInsertInfo */ public String getCustInsertInfo() { return this.custInsertInfo; } /** * @return custWriteInfo */ public String getCustWriteInfo() { return this.custWriteInfo; } /** * @return expressionVariableInfo */ public String getExpressionVariableInfo() { return this.expressionVariableInfo; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return queryExpressionVariableInfo */ public String getQueryExpressionVariableInfo() { return this.queryExpressionVariableInfo; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return sourceRuleId */ public String getSourceRuleId() { return this.sourceRuleId; } /** * @return sourceRuleIds */ public String getSourceRuleIds() { return this.sourceRuleIds; } /** * @return targetEventCode */ public String getTargetEventCode() { return this.targetEventCode; } /** * @return targetEventName */ public String getTargetEventName() { return this.targetEventName; } public static final class Builder extends Request.Builder<DeepCopyRuleRequest, Builder> { private String createType; private String custInsertInfo; private String custWriteInfo; private String expressionVariableInfo; private String lang; private String queryExpressionVariableInfo; private String regId; private String sourceRuleId; private String sourceRuleIds; private String targetEventCode; private String targetEventName; private Builder() { super(); } private Builder(DeepCopyRuleRequest request) { super(request); this.createType = request.createType; this.custInsertInfo = request.custInsertInfo; this.custWriteInfo = request.custWriteInfo; this.expressionVariableInfo = request.expressionVariableInfo; this.lang = request.lang; this.queryExpressionVariableInfo = request.queryExpressionVariableInfo; this.regId = request.regId; this.sourceRuleId = request.sourceRuleId; this.sourceRuleIds = request.sourceRuleIds; this.targetEventCode = request.targetEventCode; this.targetEventName = request.targetEventName; } /** * <p>Creation type</p> * * <strong>example:</strong> * <p>NORMAL</p> */ public Builder createType(String createType) { this.putQueryParameter("CreateType", createType); this.createType = createType; return this; } /** * <p>Newly added cumulative variable</p> * * <strong>example:</strong> * <p>[{&quot;id&quot;:&quot;1288&quot;,&quot;title&quot;:&quot;新标题&quot;}]</p> */ public Builder custInsertInfo(String custInsertInfo) { this.putQueryParameter("CustInsertInfo", custInsertInfo); this.custInsertInfo = custInsertInfo; return this; } /** * <p>Read cumulative variable</p> * * <strong>example:</strong> * <p>[1234,2345]</p> */ public Builder custWriteInfo(String custWriteInfo) { this.putQueryParameter("CustWriteInfo", custWriteInfo); this.custWriteInfo = custWriteInfo; return this; } /** * <p>Custom variables to be added</p> * * <strong>example:</strong> * <p>[{&quot;id&quot;:&quot;ex_2wxZPcxg3a03&quot;,&quot;title&quot;:&quot;新标题&quot;}]</p> */ public Builder expressionVariableInfo(String expressionVariableInfo) { this.putQueryParameter("ExpressionVariableInfo", expressionVariableInfo); this.expressionVariableInfo = expressionVariableInfo; return this; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Custom query variables to be added</p> * * <strong>example:</strong> * <p>[{&quot;id&quot;:&quot;ex_2wxZPcxg3a03&quot;,&quot;title&quot;:&quot;新标题&quot;}]</p> */ public Builder queryExpressionVariableInfo(String queryExpressionVariableInfo) { this.putQueryParameter("QueryExpressionVariableInfo", queryExpressionVariableInfo); this.queryExpressionVariableInfo = queryExpressionVariableInfo; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("RegId", regId); this.regId = regId; return this; } /** * <p>Source policy ID</p> * * <strong>example:</strong> * <p>102125</p> */ public Builder sourceRuleId(String sourceRuleId) { this.putQueryParameter("SourceRuleId", sourceRuleId); this.sourceRuleId = sourceRuleId; return this; } /** * <p>Target policy ID</p> * * <strong>example:</strong> * <p>102125,102129</p> */ public Builder sourceRuleIds(String sourceRuleIds) { this.putQueryParameter("SourceRuleIds", sourceRuleIds); this.sourceRuleIds = sourceRuleIds; return this; } /** * <p>Target event</p> * * <strong>example:</strong> * <p>de_ajtshf1581</p> */ public Builder targetEventCode(String targetEventCode) { this.putQueryParameter("TargetEventCode", targetEventCode); this.targetEventCode = targetEventCode; return this; } /** * <p>Target event name</p> * * <strong>example:</strong> * <p>目标事件名称</p> */ public Builder targetEventName(String targetEventName) { this.putQueryParameter("TargetEventName", targetEventName); this.targetEventName = targetEventName; return this; } @Override public DeepCopyRuleRequest build() { return new DeepCopyRuleRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeepCopyRuleResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeepCopyRuleResponse} extends {@link TeaModel} * * <p>DeepCopyRuleResponse</p> */ public class DeepCopyRuleResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeepCopyRuleResponseBody body; private DeepCopyRuleResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeepCopyRuleResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeepCopyRuleResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeepCopyRuleResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeepCopyRuleResponseBody body); @Override DeepCopyRuleResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeepCopyRuleResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeepCopyRuleResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeepCopyRuleResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeepCopyRuleResponseBody body) { this.body = body; return this; } @Override public DeepCopyRuleResponse build() { return new DeepCopyRuleResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeepCopyRuleResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeepCopyRuleResponseBody} extends {@link TeaModel} * * <p>DeepCopyRuleResponseBody</p> */ public class DeepCopyRuleResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("ResultObject") private ResultObject resultObject; private DeepCopyRuleResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DeepCopyRuleResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public ResultObject getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private ResultObject resultObject; private Builder() { } private Builder(DeepCopyRuleResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned result information</p> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } public DeepCopyRuleResponseBody build() { return new DeepCopyRuleResponseBody(this); } } /** * * {@link DeepCopyRuleResponseBody} extends {@link TeaModel} * * <p>DeepCopyRuleResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("BatchCopyFlag") private Boolean batchCopyFlag; @com.aliyun.core.annotation.NameInMap("ConsoleRuleId") private Long consoleRuleId; @com.aliyun.core.annotation.NameInMap("RuleId") private String ruleId; @com.aliyun.core.annotation.NameInMap("RuleVersionId") private Long ruleVersionId; private ResultObject(Builder builder) { this.batchCopyFlag = builder.batchCopyFlag; this.consoleRuleId = builder.consoleRuleId; this.ruleId = builder.ruleId; this.ruleVersionId = builder.ruleVersionId; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return batchCopyFlag */ public Boolean getBatchCopyFlag() { return this.batchCopyFlag; } /** * @return consoleRuleId */ public Long getConsoleRuleId() { return this.consoleRuleId; } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } /** * @return ruleVersionId */ public Long getRuleVersionId() { return this.ruleVersionId; } public static final class Builder { private Boolean batchCopyFlag; private Long consoleRuleId; private String ruleId; private Long ruleVersionId; private Builder() { } private Builder(ResultObject model) { this.batchCopyFlag = model.batchCopyFlag; this.consoleRuleId = model.consoleRuleId; this.ruleId = model.ruleId; this.ruleVersionId = model.ruleVersionId; } /** * <p>Whether to redirect to details</p> * * <strong>example:</strong> * <p>true</p> */ public Builder batchCopyFlag(Boolean batchCopyFlag) { this.batchCopyFlag = batchCopyFlag; return this; } /** * <p>Primary key of the policy</p> * * <strong>example:</strong> * <p>2346</p> */ public Builder consoleRuleId(Long consoleRuleId) { this.consoleRuleId = consoleRuleId; return this; } /** * <p>Policy ID</p> * * <strong>example:</strong> * <p>104556</p> */ public Builder ruleId(String ruleId) { this.ruleId = ruleId; return this; } /** * <p>Primary key of the policy version</p> * * <strong>example:</strong> * <p>1135</p> */ public Builder ruleVersionId(Long ruleVersionId) { this.ruleVersionId = ruleVersionId; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteAnalysisConditionFavoriteRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteAnalysisConditionFavoriteRequest} extends {@link RequestModel} * * <p>DeleteAnalysisConditionFavoriteRequest</p> */ public class DeleteAnalysisConditionFavoriteRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("id") @com.aliyun.core.annotation.Validation(required = true) private Long id; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DeleteAnalysisConditionFavoriteRequest(Builder builder) { super(builder); this.lang = builder.lang; this.id = builder.id; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DeleteAnalysisConditionFavoriteRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return id */ public Long getId() { return this.id; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DeleteAnalysisConditionFavoriteRequest, Builder> { private String lang; private Long id; private String regId; private Builder() { super(); } private Builder(DeleteAnalysisConditionFavoriteRequest request) { super(request); this.lang = request.lang; this.id = request.id; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Primary key ID</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>30</p> */ public Builder id(Long id) { this.putQueryParameter("id", id); this.id = id; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DeleteAnalysisConditionFavoriteRequest build() { return new DeleteAnalysisConditionFavoriteRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteAnalysisConditionFavoriteResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteAnalysisConditionFavoriteResponse} extends {@link TeaModel} * * <p>DeleteAnalysisConditionFavoriteResponse</p> */ public class DeleteAnalysisConditionFavoriteResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteAnalysisConditionFavoriteResponseBody body; private DeleteAnalysisConditionFavoriteResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteAnalysisConditionFavoriteResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteAnalysisConditionFavoriteResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteAnalysisConditionFavoriteResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteAnalysisConditionFavoriteResponseBody body); @Override DeleteAnalysisConditionFavoriteResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteAnalysisConditionFavoriteResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteAnalysisConditionFavoriteResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteAnalysisConditionFavoriteResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteAnalysisConditionFavoriteResponseBody body) { this.body = body; return this; } @Override public DeleteAnalysisConditionFavoriteResponse build() { return new DeleteAnalysisConditionFavoriteResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteAnalysisConditionFavoriteResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteAnalysisConditionFavoriteResponseBody} extends {@link TeaModel} * * <p>DeleteAnalysisConditionFavoriteResponseBody</p> */ public class DeleteAnalysisConditionFavoriteResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DeleteAnalysisConditionFavoriteResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DeleteAnalysisConditionFavoriteResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DeleteAnalysisConditionFavoriteResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DeleteAnalysisConditionFavoriteResponseBody build() { return new DeleteAnalysisConditionFavoriteResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteByPassShuntEventRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteByPassShuntEventRequest} extends {@link RequestModel} * * <p>DeleteByPassShuntEventRequest</p> */ public class DeleteByPassShuntEventRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventId") private Long eventId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DeleteByPassShuntEventRequest(Builder builder) { super(builder); this.lang = builder.lang; this.eventId = builder.eventId; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DeleteByPassShuntEventRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return eventId */ public Long getEventId() { return this.eventId; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DeleteByPassShuntEventRequest, Builder> { private String lang; private Long eventId; private String regId; private Builder() { super(); } private Builder(DeleteByPassShuntEventRequest request) { super(request); this.lang = request.lang; this.eventId = request.eventId; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Event ID.</p> * * <strong>example:</strong> * <p>25</p> */ public Builder eventId(Long eventId) { this.putQueryParameter("eventId", eventId); this.eventId = eventId; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DeleteByPassShuntEventRequest build() { return new DeleteByPassShuntEventRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteByPassShuntEventResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteByPassShuntEventResponse} extends {@link TeaModel} * * <p>DeleteByPassShuntEventResponse</p> */ public class DeleteByPassShuntEventResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteByPassShuntEventResponseBody body; private DeleteByPassShuntEventResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteByPassShuntEventResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteByPassShuntEventResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteByPassShuntEventResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteByPassShuntEventResponseBody body); @Override DeleteByPassShuntEventResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteByPassShuntEventResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteByPassShuntEventResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteByPassShuntEventResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteByPassShuntEventResponseBody body) { this.body = body; return this; } @Override public DeleteByPassShuntEventResponse build() { return new DeleteByPassShuntEventResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteByPassShuntEventResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteByPassShuntEventResponseBody} extends {@link TeaModel} * * <p>DeleteByPassShuntEventResponseBody</p> */ public class DeleteByPassShuntEventResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("code") private String code; @com.aliyun.core.annotation.NameInMap("httpStatusCode") private String httpStatusCode; @com.aliyun.core.annotation.NameInMap("message") private String message; @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; @com.aliyun.core.annotation.NameInMap("success") private Boolean success; private DeleteByPassShuntEventResponseBody(Builder builder) { this.code = builder.code; this.httpStatusCode = builder.httpStatusCode; this.message = builder.message; this.requestId = builder.requestId; this.resultObject = builder.resultObject; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static DeleteByPassShuntEventResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return code */ public String getCode() { return this.code; } /** * @return httpStatusCode */ public String getHttpStatusCode() { return this.httpStatusCode; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private String httpStatusCode; private String message; private String requestId; private Boolean resultObject; private Boolean success; private Builder() { } private Builder(DeleteByPassShuntEventResponseBody model) { this.code = model.code; this.httpStatusCode = model.httpStatusCode; this.message = model.message; this.requestId = model.requestId; this.resultObject = model.resultObject; this.success = model.success; } /** * <p>Status code</p> * * <strong>example:</strong> * <p>200</p> */ public Builder code(String code) { this.code = code; return this; } /** * <p>HTTP status code</p> * * <strong>example:</strong> * <p>200</p> */ public Builder httpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } /** * <p>Error message.</p> * * <strong>example:</strong> * <p>The input parameter data is not valid. order_storage_company_num component not found</p> */ public Builder message(String message) { this.message = message; return this; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } /** * <p>Whether it was successful.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder success(Boolean success) { this.success = success; return this; } public DeleteByPassShuntEventResponseBody build() { return new DeleteByPassShuntEventResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteCustVariableRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteCustVariableRequest} extends {@link RequestModel} * * <p>DeleteCustVariableRequest</p> */ public class DeleteCustVariableRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("createType") private String createType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("dataVersion") private Long dataVersion; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("variableId") private String variableId; private DeleteCustVariableRequest(Builder builder) { super(builder); this.lang = builder.lang; this.createType = builder.createType; this.dataVersion = builder.dataVersion; this.regId = builder.regId; this.variableId = builder.variableId; } public static Builder builder() { return new Builder(); } public static DeleteCustVariableRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return createType */ public String getCreateType() { return this.createType; } /** * @return dataVersion */ public Long getDataVersion() { return this.dataVersion; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return variableId */ public String getVariableId() { return this.variableId; } public static final class Builder extends Request.Builder<DeleteCustVariableRequest, Builder> { private String lang; private String createType; private Long dataVersion; private String regId; private String variableId; private Builder() { super(); } private Builder(DeleteCustVariableRequest request) { super(request); this.lang = request.lang; this.createType = request.createType; this.dataVersion = request.dataVersion; this.regId = request.regId; this.variableId = request.variableId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Creation type</p> * * <strong>example:</strong> * <p>NORMAL</p> */ public Builder createType(String createType) { this.putQueryParameter("createType", createType); this.createType = createType; return this; } /** * <p>Data version.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder dataVersion(Long dataVersion) { this.putQueryParameter("dataVersion", dataVersion); this.dataVersion = dataVersion; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } /** * <p>Variable ID</p> * * <strong>example:</strong> * <p>235</p> */ public Builder variableId(String variableId) { this.putQueryParameter("variableId", variableId); this.variableId = variableId; return this; } @Override public DeleteCustVariableRequest build() { return new DeleteCustVariableRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteCustVariableResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteCustVariableResponse} extends {@link TeaModel} * * <p>DeleteCustVariableResponse</p> */ public class DeleteCustVariableResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteCustVariableResponseBody body; private DeleteCustVariableResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteCustVariableResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteCustVariableResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteCustVariableResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteCustVariableResponseBody body); @Override DeleteCustVariableResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteCustVariableResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteCustVariableResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteCustVariableResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteCustVariableResponseBody body) { this.body = body; return this; } @Override public DeleteCustVariableResponse build() { return new DeleteCustVariableResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteCustVariableResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteCustVariableResponseBody} extends {@link TeaModel} * * <p>DeleteCustVariableResponseBody</p> */ public class DeleteCustVariableResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DeleteCustVariableResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DeleteCustVariableResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DeleteCustVariableResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DeleteCustVariableResponseBody build() { return new DeleteCustVariableResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteDataSourceRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteDataSourceRequest} extends {@link RequestModel} * * <p>DeleteDataSourceRequest</p> */ public class DeleteDataSourceRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("id") @com.aliyun.core.annotation.Validation(required = true) private Long id; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DeleteDataSourceRequest(Builder builder) { super(builder); this.lang = builder.lang; this.id = builder.id; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DeleteDataSourceRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return id */ public Long getId() { return this.id; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DeleteDataSourceRequest, Builder> { private String lang; private Long id; private String regId; private Builder() { super(); } private Builder(DeleteDataSourceRequest request) { super(request); this.lang = request.lang; this.id = request.id; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Primary key ID</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>30</p> */ public Builder id(Long id) { this.putQueryParameter("id", id); this.id = id; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DeleteDataSourceRequest build() { return new DeleteDataSourceRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteDataSourceResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteDataSourceResponse} extends {@link TeaModel} * * <p>DeleteDataSourceResponse</p> */ public class DeleteDataSourceResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteDataSourceResponseBody body; private DeleteDataSourceResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteDataSourceResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteDataSourceResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteDataSourceResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteDataSourceResponseBody body); @Override DeleteDataSourceResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteDataSourceResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteDataSourceResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteDataSourceResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteDataSourceResponseBody body) { this.body = body; return this; } @Override public DeleteDataSourceResponse build() { return new DeleteDataSourceResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteDataSourceResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteDataSourceResponseBody} extends {@link TeaModel} * * <p>DeleteDataSourceResponseBody</p> */ public class DeleteDataSourceResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DeleteDataSourceResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DeleteDataSourceResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DeleteDataSourceResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DeleteDataSourceResponseBody build() { return new DeleteDataSourceResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteEventFieldRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteEventFieldRequest} extends {@link RequestModel} * * <p>DeleteEventFieldRequest</p> */ public class DeleteEventFieldRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("fieldName") private String fieldName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DeleteEventFieldRequest(Builder builder) { super(builder); this.lang = builder.lang; this.eventCode = builder.eventCode; this.fieldName = builder.fieldName; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DeleteEventFieldRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return fieldName */ public String getFieldName() { return this.fieldName; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DeleteEventFieldRequest, Builder> { private String lang; private String eventCode; private String fieldName; private String regId; private Builder() { super(); } private Builder(DeleteEventFieldRequest request) { super(request); this.lang = request.lang; this.eventCode = request.eventCode; this.fieldName = request.fieldName; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Event code</p> * * <strong>example:</strong> * <p>de_awukck7117</p> */ public Builder eventCode(String eventCode) { this.putQueryParameter("eventCode", eventCode); this.eventCode = eventCode; return this; } /** * <p>Field name</p> * * <strong>example:</strong> * <p>age</p> */ public Builder fieldName(String fieldName) { this.putQueryParameter("fieldName", fieldName); this.fieldName = fieldName; return this; } /** * <p>Region ID</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DeleteEventFieldRequest build() { return new DeleteEventFieldRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteEventFieldResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteEventFieldResponse} extends {@link TeaModel} * * <p>DeleteEventFieldResponse</p> */ public class DeleteEventFieldResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteEventFieldResponseBody body; private DeleteEventFieldResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteEventFieldResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteEventFieldResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteEventFieldResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteEventFieldResponseBody body); @Override DeleteEventFieldResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteEventFieldResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteEventFieldResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteEventFieldResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteEventFieldResponseBody body) { this.body = body; return this; } @Override public DeleteEventFieldResponse build() { return new DeleteEventFieldResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteEventFieldResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteEventFieldResponseBody} extends {@link TeaModel} * * <p>DeleteEventFieldResponseBody</p> */ public class DeleteEventFieldResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resuleObject") private Boolean resuleObject; private DeleteEventFieldResponseBody(Builder builder) { this.requestId = builder.requestId; this.resuleObject = builder.resuleObject; } public static Builder builder() { return new Builder(); } public static DeleteEventFieldResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resuleObject */ public Boolean getResuleObject() { return this.resuleObject; } public static final class Builder { private String requestId; private Boolean resuleObject; private Builder() { } private Builder(DeleteEventFieldResponseBody model) { this.requestId = model.requestId; this.resuleObject = model.resuleObject; } /** * <p>ID of the request</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Result object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resuleObject(Boolean resuleObject) { this.resuleObject = resuleObject; return this; } public DeleteEventFieldResponseBody build() { return new DeleteEventFieldResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteExpressionVariableRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteExpressionVariableRequest} extends {@link RequestModel} * * <p>DeleteExpressionVariableRequest</p> */ public class DeleteExpressionVariableRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("dataVersion") @com.aliyun.core.annotation.Validation(required = true) private Long dataVersion; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("id") @com.aliyun.core.annotation.Validation(required = true) private Long id; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DeleteExpressionVariableRequest(Builder builder) { super(builder); this.lang = builder.lang; this.dataVersion = builder.dataVersion; this.id = builder.id; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DeleteExpressionVariableRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return dataVersion */ public Long getDataVersion() { return this.dataVersion; } /** * @return id */ public Long getId() { return this.id; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DeleteExpressionVariableRequest, Builder> { private String lang; private Long dataVersion; private Long id; private String regId; private Builder() { super(); } private Builder(DeleteExpressionVariableRequest request) { super(request); this.lang = request.lang; this.dataVersion = request.dataVersion; this.id = request.id; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Data version.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder dataVersion(Long dataVersion) { this.putQueryParameter("dataVersion", dataVersion); this.dataVersion = dataVersion; return this; } /** * <p>Variable ID</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>2556</p> */ public Builder id(Long id) { this.putQueryParameter("id", id); this.id = id; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DeleteExpressionVariableRequest build() { return new DeleteExpressionVariableRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteExpressionVariableResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteExpressionVariableResponse} extends {@link TeaModel} * * <p>DeleteExpressionVariableResponse</p> */ public class DeleteExpressionVariableResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteExpressionVariableResponseBody body; private DeleteExpressionVariableResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteExpressionVariableResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteExpressionVariableResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteExpressionVariableResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteExpressionVariableResponseBody body); @Override DeleteExpressionVariableResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteExpressionVariableResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteExpressionVariableResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteExpressionVariableResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteExpressionVariableResponseBody body) { this.body = body; return this; } @Override public DeleteExpressionVariableResponse build() { return new DeleteExpressionVariableResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteExpressionVariableResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteExpressionVariableResponseBody} extends {@link TeaModel} * * <p>DeleteExpressionVariableResponseBody</p> */ public class DeleteExpressionVariableResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DeleteExpressionVariableResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DeleteExpressionVariableResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DeleteExpressionVariableResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DeleteExpressionVariableResponseBody build() { return new DeleteExpressionVariableResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteFieldRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteFieldRequest} extends {@link RequestModel} * * <p>DeleteFieldRequest</p> */ public class DeleteFieldRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DeleteFieldRequest(Builder builder) { super(builder); this.lang = builder.lang; this.id = builder.id; this.name = builder.name; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DeleteFieldRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return id */ public Long getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DeleteFieldRequest, Builder> { private String lang; private Long id; private String name; private String regId; private Builder() { super(); } private Builder(DeleteFieldRequest request) { super(request); this.lang = request.lang; this.id = request.id; this.name = request.name; this.regId = request.regId; } /** * <p>Set the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Primary key ID of the field</p> * * <strong>example:</strong> * <p>2556</p> */ public Builder id(Long id) { this.putQueryParameter("id", id); this.id = id; return this; } /** * <p>Name of the field.</p> * * <strong>example:</strong> * <p>age</p> */ public Builder name(String name) { this.putQueryParameter("name", name); this.name = name; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DeleteFieldRequest build() { return new DeleteFieldRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteFieldResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteFieldResponse} extends {@link TeaModel} * * <p>DeleteFieldResponse</p> */ public class DeleteFieldResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteFieldResponseBody body; private DeleteFieldResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteFieldResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteFieldResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteFieldResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteFieldResponseBody body); @Override DeleteFieldResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteFieldResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteFieldResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteFieldResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteFieldResponseBody body) { this.body = body; return this; } @Override public DeleteFieldResponse build() { return new DeleteFieldResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteFieldResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteFieldResponseBody} extends {@link TeaModel} * * <p>DeleteFieldResponseBody</p> */ public class DeleteFieldResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DeleteFieldResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DeleteFieldResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DeleteFieldResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DeleteFieldResponseBody build() { return new DeleteFieldResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteNameListDataRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteNameListDataRequest} extends {@link RequestModel} * * <p>DeleteNameListDataRequest</p> */ public class DeleteNameListDataRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("variableId") private String variableId; private DeleteNameListDataRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; this.variableId = builder.variableId; } public static Builder builder() { return new Builder(); } public static DeleteNameListDataRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return variableId */ public String getVariableId() { return this.variableId; } public static final class Builder extends Request.Builder<DeleteNameListDataRequest, Builder> { private String lang; private String regId; private String variableId; private Builder() { super(); } private Builder(DeleteNameListDataRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; this.variableId = request.variableId; } /** * <p>Set the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } /** * <p>Variable ID</p> * * <strong>example:</strong> * <p>239</p> */ public Builder variableId(String variableId) { this.putQueryParameter("variableId", variableId); this.variableId = variableId; return this; } @Override public DeleteNameListDataRequest build() { return new DeleteNameListDataRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteNameListDataResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteNameListDataResponse} extends {@link TeaModel} * * <p>DeleteNameListDataResponse</p> */ public class DeleteNameListDataResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteNameListDataResponseBody body; private DeleteNameListDataResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteNameListDataResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteNameListDataResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteNameListDataResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteNameListDataResponseBody body); @Override DeleteNameListDataResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteNameListDataResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteNameListDataResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteNameListDataResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteNameListDataResponseBody body) { this.body = body; return this; } @Override public DeleteNameListDataResponse build() { return new DeleteNameListDataResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteNameListDataResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteNameListDataResponseBody} extends {@link TeaModel} * * <p>DeleteNameListDataResponseBody</p> */ public class DeleteNameListDataResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DeleteNameListDataResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DeleteNameListDataResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DeleteNameListDataResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DeleteNameListDataResponseBody build() { return new DeleteNameListDataResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteNameListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteNameListRequest} extends {@link RequestModel} * * <p>DeleteNameListRequest</p> */ public class DeleteNameListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ids") private String ids; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DeleteNameListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.ids = builder.ids; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DeleteNameListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return ids */ public String getIds() { return this.ids; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DeleteNameListRequest, Builder> { private String lang; private String ids; private String regId; private Builder() { super(); } private Builder(DeleteNameListRequest request) { super(request); this.lang = request.lang; this.ids = request.ids; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Name list ID, multiple IDs should be separated by commas</p> * * <strong>example:</strong> * <p>23,24,25</p> */ public Builder ids(String ids) { this.putQueryParameter("ids", ids); this.ids = ids; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DeleteNameListRequest build() { return new DeleteNameListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteNameListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteNameListResponse} extends {@link TeaModel} * * <p>DeleteNameListResponse</p> */ public class DeleteNameListResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteNameListResponseBody body; private DeleteNameListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteNameListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteNameListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteNameListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteNameListResponseBody body); @Override DeleteNameListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteNameListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteNameListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteNameListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteNameListResponseBody body) { this.body = body; return this; } @Override public DeleteNameListResponse build() { return new DeleteNameListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteNameListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteNameListResponseBody} extends {@link TeaModel} * * <p>DeleteNameListResponseBody</p> */ public class DeleteNameListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DeleteNameListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DeleteNameListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DeleteNameListResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DeleteNameListResponseBody build() { return new DeleteNameListResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteQueryVariableRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteQueryVariableRequest} extends {@link RequestModel} * * <p>DeleteQueryVariableRequest</p> */ public class DeleteQueryVariableRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("id") @com.aliyun.core.annotation.Validation(required = true) private Long id; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DeleteQueryVariableRequest(Builder builder) { super(builder); this.lang = builder.lang; this.id = builder.id; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DeleteQueryVariableRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return id */ public Long getId() { return this.id; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DeleteQueryVariableRequest, Builder> { private String lang; private Long id; private String regId; private Builder() { super(); } private Builder(DeleteQueryVariableRequest request) { super(request); this.lang = request.lang; this.id = request.id; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Variable ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>3144</p> */ public Builder id(Long id) { this.putQueryParameter("id", id); this.id = id; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DeleteQueryVariableRequest build() { return new DeleteQueryVariableRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteQueryVariableResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteQueryVariableResponse} extends {@link TeaModel} * * <p>DeleteQueryVariableResponse</p> */ public class DeleteQueryVariableResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteQueryVariableResponseBody body; private DeleteQueryVariableResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteQueryVariableResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteQueryVariableResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteQueryVariableResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteQueryVariableResponseBody body); @Override DeleteQueryVariableResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteQueryVariableResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteQueryVariableResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteQueryVariableResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteQueryVariableResponseBody body) { this.body = body; return this; } @Override public DeleteQueryVariableResponse build() { return new DeleteQueryVariableResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteQueryVariableResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteQueryVariableResponseBody} extends {@link TeaModel} * * <p>DeleteQueryVariableResponseBody</p> */ public class DeleteQueryVariableResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DeleteQueryVariableResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DeleteQueryVariableResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DeleteQueryVariableResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DeleteQueryVariableResponseBody build() { return new DeleteQueryVariableResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteRuleRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteRuleRequest} extends {@link RequestModel} * * <p>DeleteRuleRequest</p> */ public class DeleteRuleRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("consoleRuleId") private Long consoleRuleId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ruleId") private String ruleId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ruleVersionId") private Long ruleVersionId; private DeleteRuleRequest(Builder builder) { super(builder); this.lang = builder.lang; this.consoleRuleId = builder.consoleRuleId; this.regId = builder.regId; this.ruleId = builder.ruleId; this.ruleVersionId = builder.ruleVersionId; } public static Builder builder() { return new Builder(); } public static DeleteRuleRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return consoleRuleId */ public Long getConsoleRuleId() { return this.consoleRuleId; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } /** * @return ruleVersionId */ public Long getRuleVersionId() { return this.ruleVersionId; } public static final class Builder extends Request.Builder<DeleteRuleRequest, Builder> { private String lang; private Long consoleRuleId; private String regId; private String ruleId; private Long ruleVersionId; private Builder() { super(); } private Builder(DeleteRuleRequest request) { super(request); this.lang = request.lang; this.consoleRuleId = request.consoleRuleId; this.regId = request.regId; this.ruleId = request.ruleId; this.ruleVersionId = request.ruleVersionId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Policy primary key ID</p> * * <strong>example:</strong> * <p>7035</p> */ public Builder consoleRuleId(Long consoleRuleId) { this.putQueryParameter("consoleRuleId", consoleRuleId); this.consoleRuleId = consoleRuleId; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } /** * <p>Policy ID</p> * * <strong>example:</strong> * <p>102059</p> */ public Builder ruleId(String ruleId) { this.putQueryParameter("ruleId", ruleId); this.ruleId = ruleId; return this; } /** * <p>Policy version primary key ID</p> * * <strong>example:</strong> * <p>10203</p> */ public Builder ruleVersionId(Long ruleVersionId) { this.putQueryParameter("ruleVersionId", ruleVersionId); this.ruleVersionId = ruleVersionId; return this; } @Override public DeleteRuleRequest build() { return new DeleteRuleRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteRuleResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteRuleResponse} extends {@link TeaModel} * * <p>DeleteRuleResponse</p> */ public class DeleteRuleResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteRuleResponseBody body; private DeleteRuleResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteRuleResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteRuleResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteRuleResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteRuleResponseBody body); @Override DeleteRuleResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteRuleResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteRuleResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteRuleResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteRuleResponseBody body) { this.body = body; return this; } @Override public DeleteRuleResponse build() { return new DeleteRuleResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteRuleResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteRuleResponseBody} extends {@link TeaModel} * * <p>DeleteRuleResponseBody</p> */ public class DeleteRuleResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DeleteRuleResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DeleteRuleResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DeleteRuleResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DeleteRuleResponseBody build() { return new DeleteRuleResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteSampleBatchMetaRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteSampleBatchMetaRequest} extends {@link RequestModel} * * <p>DeleteSampleBatchMetaRequest</p> */ public class DeleteSampleBatchMetaRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("batchUuid") private String batchUuid; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DeleteSampleBatchMetaRequest(Builder builder) { super(builder); this.lang = builder.lang; this.batchUuid = builder.batchUuid; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DeleteSampleBatchMetaRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return batchUuid */ public String getBatchUuid() { return this.batchUuid; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DeleteSampleBatchMetaRequest, Builder> { private String lang; private String batchUuid; private String regId; private Builder() { super(); } private Builder(DeleteSampleBatchMetaRequest request) { super(request); this.lang = request.lang; this.batchUuid = request.batchUuid; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>UUID.</p> * * <strong>example:</strong> * <p>jigaklba83ka</p> */ public Builder batchUuid(String batchUuid) { this.putQueryParameter("batchUuid", batchUuid); this.batchUuid = batchUuid; return this; } /** * <p>Region code.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DeleteSampleBatchMetaRequest build() { return new DeleteSampleBatchMetaRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteSampleBatchMetaResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteSampleBatchMetaResponse} extends {@link TeaModel} * * <p>DeleteSampleBatchMetaResponse</p> */ public class DeleteSampleBatchMetaResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteSampleBatchMetaResponseBody body; private DeleteSampleBatchMetaResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteSampleBatchMetaResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteSampleBatchMetaResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteSampleBatchMetaResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteSampleBatchMetaResponseBody body); @Override DeleteSampleBatchMetaResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteSampleBatchMetaResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteSampleBatchMetaResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteSampleBatchMetaResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteSampleBatchMetaResponseBody body) { this.body = body; return this; } @Override public DeleteSampleBatchMetaResponse build() { return new DeleteSampleBatchMetaResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteSampleBatchMetaResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteSampleBatchMetaResponseBody} extends {@link TeaModel} * * <p>DeleteSampleBatchMetaResponseBody</p> */ public class DeleteSampleBatchMetaResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DeleteSampleBatchMetaResponseBody(Builder builder) { this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DeleteSampleBatchMetaResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String requestId; private Builder() { } private Builder(DeleteSampleBatchMetaResponseBody model) { this.requestId = model.requestId; } /** * <p>ID of the request</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DeleteSampleBatchMetaResponseBody build() { return new DeleteSampleBatchMetaResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteSampleBatchRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteSampleBatchRequest} extends {@link RequestModel} * * <p>DeleteSampleBatchRequest</p> */ public class DeleteSampleBatchRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ids") private String ids; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("versions") @com.aliyun.core.annotation.Validation(required = true) private String versions; private DeleteSampleBatchRequest(Builder builder) { super(builder); this.lang = builder.lang; this.ids = builder.ids; this.regId = builder.regId; this.versions = builder.versions; } public static Builder builder() { return new Builder(); } public static DeleteSampleBatchRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return ids */ public String getIds() { return this.ids; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return versions */ public String getVersions() { return this.versions; } public static final class Builder extends Request.Builder<DeleteSampleBatchRequest, Builder> { private String lang; private String ids; private String regId; private String versions; private Builder() { super(); } private Builder(DeleteSampleBatchRequest request) { super(request); this.lang = request.lang; this.ids = request.ids; this.regId = request.regId; this.versions = request.versions; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>IDs for batch deletion operations.</p> * * <strong>example:</strong> * <p>324,343</p> */ public Builder ids(String ids) { this.putQueryParameter("ids", ids); this.ids = ids; return this; } /** * <p>Region code.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } /** * <p>List of versions.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1,1</p> */ public Builder versions(String versions) { this.putQueryParameter("versions", versions); this.versions = versions; return this; } @Override public DeleteSampleBatchRequest build() { return new DeleteSampleBatchRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteSampleBatchResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteSampleBatchResponse} extends {@link TeaModel} * * <p>DeleteSampleBatchResponse</p> */ public class DeleteSampleBatchResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteSampleBatchResponseBody body; private DeleteSampleBatchResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteSampleBatchResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteSampleBatchResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteSampleBatchResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteSampleBatchResponseBody body); @Override DeleteSampleBatchResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteSampleBatchResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteSampleBatchResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteSampleBatchResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteSampleBatchResponseBody body) { this.body = body; return this; } @Override public DeleteSampleBatchResponse build() { return new DeleteSampleBatchResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteSampleBatchResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteSampleBatchResponseBody} extends {@link TeaModel} * * <p>DeleteSampleBatchResponseBody</p> */ public class DeleteSampleBatchResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("data") private Boolean data; private DeleteSampleBatchResponseBody(Builder builder) { this.requestId = builder.requestId; this.data = builder.data; } public static Builder builder() { return new Builder(); } public static DeleteSampleBatchResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return data */ public Boolean getData() { return this.data; } public static final class Builder { private String requestId; private Boolean data; private Builder() { } private Builder(DeleteSampleBatchResponseBody model) { this.requestId = model.requestId; this.data = model.data; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned data object.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder data(Boolean data) { this.data = data; return this; } public DeleteSampleBatchResponseBody build() { return new DeleteSampleBatchResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteSampleDataRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteSampleDataRequest} extends {@link RequestModel} * * <p>DeleteSampleDataRequest</p> */ public class DeleteSampleDataRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("id") private String id; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DeleteSampleDataRequest(Builder builder) { super(builder); this.lang = builder.lang; this.id = builder.id; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DeleteSampleDataRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return id */ public String getId() { return this.id; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DeleteSampleDataRequest, Builder> { private String lang; private String id; private String regId; private Builder() { super(); } private Builder(DeleteSampleDataRequest request) { super(request); this.lang = request.lang; this.id = request.id; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Primary key ID</p> * * <strong>example:</strong> * <p>3144</p> */ public Builder id(String id) { this.putQueryParameter("id", id); this.id = id; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DeleteSampleDataRequest build() { return new DeleteSampleDataRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteSampleDataResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteSampleDataResponse} extends {@link TeaModel} * * <p>DeleteSampleDataResponse</p> */ public class DeleteSampleDataResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteSampleDataResponseBody body; private DeleteSampleDataResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteSampleDataResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteSampleDataResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteSampleDataResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteSampleDataResponseBody body); @Override DeleteSampleDataResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteSampleDataResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteSampleDataResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteSampleDataResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteSampleDataResponseBody body) { this.body = body; return this; } @Override public DeleteSampleDataResponse build() { return new DeleteSampleDataResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteSampleDataResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteSampleDataResponseBody} extends {@link TeaModel} * * <p>DeleteSampleDataResponseBody</p> */ public class DeleteSampleDataResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DeleteSampleDataResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DeleteSampleDataResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DeleteSampleDataResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DeleteSampleDataResponseBody build() { return new DeleteSampleDataResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteSelfBindVariableRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteSelfBindVariableRequest} extends {@link RequestModel} * * <p>DeleteSelfBindVariableRequest</p> */ public class DeleteSelfBindVariableRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DeleteSelfBindVariableRequest(Builder builder) { super(builder); this.lang = builder.lang; this.id = builder.id; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DeleteSelfBindVariableRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return id */ public Long getId() { return this.id; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DeleteSelfBindVariableRequest, Builder> { private String lang; private Long id; private String regId; private Builder() { super(); } private Builder(DeleteSelfBindVariableRequest request) { super(request); this.lang = request.lang; this.id = request.id; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Variable ID</p> * * <strong>example:</strong> * <p>3144</p> */ public Builder id(Long id) { this.putQueryParameter("id", id); this.id = id; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DeleteSelfBindVariableRequest build() { return new DeleteSelfBindVariableRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteSelfBindVariableResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteSelfBindVariableResponse} extends {@link TeaModel} * * <p>DeleteSelfBindVariableResponse</p> */ public class DeleteSelfBindVariableResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DeleteSelfBindVariableResponseBody body; private DeleteSelfBindVariableResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteSelfBindVariableResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DeleteSelfBindVariableResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteSelfBindVariableResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteSelfBindVariableResponseBody body); @Override DeleteSelfBindVariableResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteSelfBindVariableResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteSelfBindVariableResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteSelfBindVariableResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DeleteSelfBindVariableResponseBody body) { this.body = body; return this; } @Override public DeleteSelfBindVariableResponse build() { return new DeleteSelfBindVariableResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DeleteSelfBindVariableResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DeleteSelfBindVariableResponseBody} extends {@link TeaModel} * * <p>DeleteSelfBindVariableResponseBody</p> */ public class DeleteSelfBindVariableResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DeleteSelfBindVariableResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DeleteSelfBindVariableResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DeleteSelfBindVariableResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>ID of the request</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DeleteSelfBindVariableResponseBody build() { return new DeleteSelfBindVariableResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAdvanceSearchLeftVariableListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAdvanceSearchLeftVariableListRequest} extends {@link RequestModel} * * <p>DescribeAdvanceSearchLeftVariableListRequest</p> */ public class DescribeAdvanceSearchLeftVariableListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventCodes") @com.aliyun.core.annotation.Validation(required = true) private String eventCodes; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("scene") @com.aliyun.core.annotation.Validation(required = true) private String scene; private DescribeAdvanceSearchLeftVariableListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.eventCodes = builder.eventCodes; this.regId = builder.regId; this.scene = builder.scene; } public static Builder builder() { return new Builder(); } public static DescribeAdvanceSearchLeftVariableListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return eventCodes */ public String getEventCodes() { return this.eventCodes; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return scene */ public String getScene() { return this.scene; } public static final class Builder extends Request.Builder<DescribeAdvanceSearchLeftVariableListRequest, Builder> { private String lang; private String eventCodes; private String regId; private String scene; private Builder() { super(); } private Builder(DescribeAdvanceSearchLeftVariableListRequest request) { super(request); this.lang = request.lang; this.eventCodes = request.eventCodes; this.regId = request.regId; this.scene = request.scene; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Event code.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>de_ahqhsw7665,de_agbzfi5134</p> */ public Builder eventCodes(String eventCodes) { this.putQueryParameter("eventCodes", eventCodes); this.eventCodes = eventCodes; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } /** * <p>Scene</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>VELOCITY</p> */ public Builder scene(String scene) { this.putQueryParameter("scene", scene); this.scene = scene; return this; } @Override public DescribeAdvanceSearchLeftVariableListRequest build() { return new DescribeAdvanceSearchLeftVariableListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAdvanceSearchLeftVariableListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAdvanceSearchLeftVariableListResponse} extends {@link TeaModel} * * <p>DescribeAdvanceSearchLeftVariableListResponse</p> */ public class DescribeAdvanceSearchLeftVariableListResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAdvanceSearchLeftVariableListResponseBody body; private DescribeAdvanceSearchLeftVariableListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAdvanceSearchLeftVariableListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAdvanceSearchLeftVariableListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAdvanceSearchLeftVariableListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAdvanceSearchLeftVariableListResponseBody body); @Override DescribeAdvanceSearchLeftVariableListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAdvanceSearchLeftVariableListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAdvanceSearchLeftVariableListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAdvanceSearchLeftVariableListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAdvanceSearchLeftVariableListResponseBody body) { this.body = body; return this; } @Override public DescribeAdvanceSearchLeftVariableListResponse build() { return new DescribeAdvanceSearchLeftVariableListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAdvanceSearchLeftVariableListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAdvanceSearchLeftVariableListResponseBody} extends {@link TeaModel} * * <p>DescribeAdvanceSearchLeftVariableListResponseBody</p> */ public class DescribeAdvanceSearchLeftVariableListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeAdvanceSearchLeftVariableListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeAdvanceSearchLeftVariableListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public java.util.List<ResultObject> getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private java.util.List<ResultObject> resultObject; private Builder() { } private Builder(DescribeAdvanceSearchLeftVariableListResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } public DescribeAdvanceSearchLeftVariableListResponseBody build() { return new DescribeAdvanceSearchLeftVariableListResponseBody(this); } } /** * * {@link DescribeAdvanceSearchLeftVariableListResponseBody} extends {@link TeaModel} * * <p>DescribeAdvanceSearchLeftVariableListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("code") private String code; @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("displayType") private String displayType; @com.aliyun.core.annotation.NameInMap("fieldRank") private Long fieldRank; @com.aliyun.core.annotation.NameInMap("fieldType") private String fieldType; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("parentName") private String parentName; @com.aliyun.core.annotation.NameInMap("sourceType") private String sourceType; @com.aliyun.core.annotation.NameInMap("title") private String title; @com.aliyun.core.annotation.NameInMap("type") private String type; private ResultObject(Builder builder) { this.code = builder.code; this.description = builder.description; this.displayType = builder.displayType; this.fieldRank = builder.fieldRank; this.fieldType = builder.fieldType; this.id = builder.id; this.name = builder.name; this.parentName = builder.parentName; this.sourceType = builder.sourceType; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return description */ public String getDescription() { return this.description; } /** * @return displayType */ public String getDisplayType() { return this.displayType; } /** * @return fieldRank */ public Long getFieldRank() { return this.fieldRank; } /** * @return fieldType */ public String getFieldType() { return this.fieldType; } /** * @return id */ public Long getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } /** * @return parentName */ public String getParentName() { return this.parentName; } /** * @return sourceType */ public String getSourceType() { return this.sourceType; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String code; private String description; private String displayType; private Long fieldRank; private String fieldType; private Long id; private String name; private String parentName; private String sourceType; private String title; private String type; private Builder() { } private Builder(ResultObject model) { this.code = model.code; this.description = model.description; this.displayType = model.displayType; this.fieldRank = model.fieldRank; this.fieldType = model.fieldType; this.id = model.id; this.name = model.name; this.parentName = model.parentName; this.sourceType = model.sourceType; this.title = model.title; this.type = model.type; } /** * <p>Variable code</p> * * <strong>example:</strong> * <p>age</p> */ public Builder code(String code) { this.code = code; return this; } /** * <p>Description.</p> * * <strong>example:</strong> * <p>年龄描述</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Display type and grouping label</p> * * <strong>example:</strong> * <p>NATIVE</p> */ public Builder displayType(String displayType) { this.displayType = displayType; return this; } /** * <p>Variable return value type</p> * * <strong>example:</strong> * <p>STRING</p> */ public Builder fieldRank(Long fieldRank) { this.fieldRank = fieldRank; return this; } /** * <p>Field table sorting</p> * * <strong>example:</strong> * <p>1</p> */ public Builder fieldType(String fieldType) { this.fieldType = fieldType; return this; } /** * <p>Primary key ID</p> * * <strong>example:</strong> * <p>2453</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Variable name</p> * * <strong>example:</strong> * <p>age</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Parent node</p> * * <strong>example:</strong> * <p>name</p> */ public Builder parentName(String parentName) { this.parentName = parentName; return this; } /** * <p>Data source</p> * * <strong>example:</strong> * <p>SAF</p> */ public Builder sourceType(String sourceType) { this.sourceType = sourceType; return this; } /** * <p>Title.</p> * * <strong>example:</strong> * <p>年龄</p> */ public Builder title(String title) { this.title = title; return this; } /** * <p>Variable type</p> * * <strong>example:</strong> * <p>NATIVE</p> */ public Builder type(String type) { this.type = type; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAdvanceSearchPageListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAdvanceSearchPageListRequest} extends {@link RequestModel} * * <p>DescribeAdvanceSearchPageListRequest</p> */ public class DescribeAdvanceSearchPageListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("condition") private String condition; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("currentPage") @com.aliyun.core.annotation.Validation(required = true) private Long currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventBeginTime") @com.aliyun.core.annotation.Validation(required = true) private Long eventBeginTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventCodes") @com.aliyun.core.annotation.Validation(required = true) private String eventCodes; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventEndTime") @com.aliyun.core.annotation.Validation(required = true) private Long eventEndTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("fieldName") private String fieldName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("fieldValue") private String fieldValue; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") @com.aliyun.core.annotation.Validation(required = true) private Long pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DescribeAdvanceSearchPageListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.condition = builder.condition; this.currentPage = builder.currentPage; this.eventBeginTime = builder.eventBeginTime; this.eventCodes = builder.eventCodes; this.eventEndTime = builder.eventEndTime; this.fieldName = builder.fieldName; this.fieldValue = builder.fieldValue; this.pageSize = builder.pageSize; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeAdvanceSearchPageListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return condition */ public String getCondition() { return this.condition; } /** * @return currentPage */ public Long getCurrentPage() { return this.currentPage; } /** * @return eventBeginTime */ public Long getEventBeginTime() { return this.eventBeginTime; } /** * @return eventCodes */ public String getEventCodes() { return this.eventCodes; } /** * @return eventEndTime */ public Long getEventEndTime() { return this.eventEndTime; } /** * @return fieldName */ public String getFieldName() { return this.fieldName; } /** * @return fieldValue */ public String getFieldValue() { return this.fieldValue; } /** * @return pageSize */ public Long getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeAdvanceSearchPageListRequest, Builder> { private String lang; private String condition; private Long currentPage; private Long eventBeginTime; private String eventCodes; private Long eventEndTime; private String fieldName; private String fieldValue; private Long pageSize; private String regId; private Builder() { super(); } private Builder(DescribeAdvanceSearchPageListRequest request) { super(request); this.lang = request.lang; this.condition = request.condition; this.currentPage = request.currentPage; this.eventBeginTime = request.eventBeginTime; this.eventCodes = request.eventCodes; this.eventEndTime = request.eventEndTime; this.fieldName = request.fieldName; this.fieldValue = request.fieldValue; this.pageSize = request.pageSize; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Condition value.</p> * * <strong>example:</strong> * <p>{ * &quot;relationship&quot;: &quot;and&quot;, * &quot;list&quot;: [ * { * &quot;deepCount&quot;: 1, * &quot;left&quot;: { * &quot;hasRightVariable&quot;: true, * &quot;fieldType&quot;: &quot;STRING&quot;, * &quot;functionName&quot;: &quot;&quot;, * &quot;leftVariableType&quot;: &quot;NATIVE&quot;, * &quot;name&quot;: &quot;accountId&quot;, * &quot;operatorCode&quot;: &quot;equals&quot; * }, * &quot;right&quot;: { * &quot;rightVariableType&quot;: &quot;constant&quot;, * &quot;name&quot;: &quot;10000&quot;, * &quot;functionName&quot;: &quot;&quot; * }, * &quot;operatorCode&quot;: &quot;equals&quot; * } * ] * }</p> */ public Builder condition(String condition) { this.putQueryParameter("condition", condition); this.condition = condition; return this; } /** * <p>Current page number.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(Long currentPage) { this.putQueryParameter("currentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Query start time, accurate to milliseconds (ms).</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1753372800000</p> */ public Builder eventBeginTime(Long eventBeginTime) { this.putQueryParameter("eventBeginTime", eventBeginTime); this.eventBeginTime = eventBeginTime; return this; } /** * <p>Event code.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>[&quot;de_ahqhsw7665&quot;]</p> */ public Builder eventCodes(String eventCodes) { this.putQueryParameter("eventCodes", eventCodes); this.eventCodes = eventCodes; return this; } /** * <p>End time, accurate to milliseconds (ms).</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1753459199059</p> */ public Builder eventEndTime(Long eventEndTime) { this.putQueryParameter("eventEndTime", eventEndTime); this.eventEndTime = eventEndTime; return this; } /** * <p>Field name</p> * * <strong>example:</strong> * <p>age</p> */ public Builder fieldName(String fieldName) { this.putQueryParameter("fieldName", fieldName); this.fieldName = fieldName; return this; } /** * <p>Field value</p> * * <strong>example:</strong> * <p>20</p> */ public Builder fieldValue(String fieldValue) { this.putQueryParameter("fieldValue", fieldValue); this.fieldValue = fieldValue; return this; } /** * <p>Page size, default value is 10</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Long pageSize) { this.putQueryParameter("pageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeAdvanceSearchPageListRequest build() { return new DescribeAdvanceSearchPageListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAdvanceSearchPageListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAdvanceSearchPageListResponse} extends {@link TeaModel} * * <p>DescribeAdvanceSearchPageListResponse</p> */ public class DescribeAdvanceSearchPageListResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAdvanceSearchPageListResponseBody body; private DescribeAdvanceSearchPageListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAdvanceSearchPageListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAdvanceSearchPageListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAdvanceSearchPageListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAdvanceSearchPageListResponseBody body); @Override DescribeAdvanceSearchPageListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAdvanceSearchPageListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAdvanceSearchPageListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAdvanceSearchPageListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAdvanceSearchPageListResponseBody body) { this.body = body; return this; } @Override public DescribeAdvanceSearchPageListResponse build() { return new DescribeAdvanceSearchPageListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAdvanceSearchPageListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAdvanceSearchPageListResponseBody} extends {@link TeaModel} * * <p>DescribeAdvanceSearchPageListResponseBody</p> */ public class DescribeAdvanceSearchPageListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeAdvanceSearchPageListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeAdvanceSearchPageListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public ResultObject getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private ResultObject resultObject; private Builder() { } private Builder(DescribeAdvanceSearchPageListResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } public DescribeAdvanceSearchPageListResponseBody build() { return new DescribeAdvanceSearchPageListResponseBody(this); } } /** * * {@link DescribeAdvanceSearchPageListResponseBody} extends {@link TeaModel} * * <p>DescribeAdvanceSearchPageListResponseBody</p> */ public static class ResultObjectHeader extends TeaModel { @com.aliyun.core.annotation.NameInMap("fieldName") private String fieldName; @com.aliyun.core.annotation.NameInMap("fieldTitle") private String fieldTitle; @com.aliyun.core.annotation.NameInMap("isDefault") private Boolean isDefault; private ResultObjectHeader(Builder builder) { this.fieldName = builder.fieldName; this.fieldTitle = builder.fieldTitle; this.isDefault = builder.isDefault; } public static Builder builder() { return new Builder(); } public static ResultObjectHeader create() { return builder().build(); } /** * @return fieldName */ public String getFieldName() { return this.fieldName; } /** * @return fieldTitle */ public String getFieldTitle() { return this.fieldTitle; } /** * @return isDefault */ public Boolean getIsDefault() { return this.isDefault; } public static final class Builder { private String fieldName; private String fieldTitle; private Boolean isDefault; private Builder() { } private Builder(ResultObjectHeader model) { this.fieldName = model.fieldName; this.fieldTitle = model.fieldTitle; this.isDefault = model.isDefault; } /** * <p>Field name</p> * * <strong>example:</strong> * <p>age</p> */ public Builder fieldName(String fieldName) { this.fieldName = fieldName; return this; } /** * <p>Field title.</p> * * <strong>example:</strong> * <p>年龄</p> */ public Builder fieldTitle(String fieldTitle) { this.fieldTitle = fieldTitle; return this; } /** * <p>Whether it is a default display field (displayed in the response, not used as a parameter)</p> * <ul> * <li>true: Yes</li> * <li>false: No</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ public Builder isDefault(Boolean isDefault) { this.isDefault = isDefault; return this; } public ResultObjectHeader build() { return new ResultObjectHeader(this); } } } /** * * {@link DescribeAdvanceSearchPageListResponseBody} extends {@link TeaModel} * * <p>DescribeAdvanceSearchPageListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("currentPage") private Long currentPage; @com.aliyun.core.annotation.NameInMap("data") private java.util.List<java.util.Map<String, ?>> data; @com.aliyun.core.annotation.NameInMap("header") private java.util.List<ResultObjectHeader> header; @com.aliyun.core.annotation.NameInMap("pageSize") private Long pageSize; @com.aliyun.core.annotation.NameInMap("totalItem") private Long totalItem; @com.aliyun.core.annotation.NameInMap("totalPage") private Long totalPage; private ResultObject(Builder builder) { this.currentPage = builder.currentPage; this.data = builder.data; this.header = builder.header; this.pageSize = builder.pageSize; this.totalItem = builder.totalItem; this.totalPage = builder.totalPage; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return currentPage */ public Long getCurrentPage() { return this.currentPage; } /** * @return data */ public java.util.List<java.util.Map<String, ?>> getData() { return this.data; } /** * @return header */ public java.util.List<ResultObjectHeader> getHeader() { return this.header; } /** * @return pageSize */ public Long getPageSize() { return this.pageSize; } /** * @return totalItem */ public Long getTotalItem() { return this.totalItem; } /** * @return totalPage */ public Long getTotalPage() { return this.totalPage; } public static final class Builder { private Long currentPage; private java.util.List<java.util.Map<String, ?>> data; private java.util.List<ResultObjectHeader> header; private Long pageSize; private Long totalItem; private Long totalPage; private Builder() { } private Builder(ResultObject model) { this.currentPage = model.currentPage; this.data = model.data; this.header = model.header; this.pageSize = model.pageSize; this.totalItem = model.totalItem; this.totalPage = model.totalPage; } /** * <p>Current page number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(Long currentPage) { this.currentPage = currentPage; return this; } /** * <p>Returned data object</p> */ public Builder data(java.util.List<java.util.Map<String, ?>> data) { this.data = data; return this; } /** * <p>Table header</p> */ public Builder header(java.util.List<ResultObjectHeader> header) { this.header = header; return this; } /** * <p>Number of items per page. Default value: 20, minimum value: 1, maximum value: 50.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Long pageSize) { this.pageSize = pageSize; return this; } /** * <p>Total number of items</p> * * <strong>example:</strong> * <p>37</p> */ public Builder totalItem(Long totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total number of pages</p> * * <strong>example:</strong> * <p>4</p> */ public Builder totalPage(Long totalPage) { this.totalPage = totalPage; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAllDataSourceRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAllDataSourceRequest} extends {@link RequestModel} * * <p>DescribeAllDataSourceRequest</p> */ public class DescribeAllDataSourceRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DescribeAllDataSourceRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeAllDataSourceRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeAllDataSourceRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeAllDataSourceRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeAllDataSourceRequest build() { return new DescribeAllDataSourceRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAllDataSourceResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAllDataSourceResponse} extends {@link TeaModel} * * <p>DescribeAllDataSourceResponse</p> */ public class DescribeAllDataSourceResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAllDataSourceResponseBody body; private DescribeAllDataSourceResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAllDataSourceResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAllDataSourceResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAllDataSourceResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAllDataSourceResponseBody body); @Override DescribeAllDataSourceResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAllDataSourceResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAllDataSourceResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAllDataSourceResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAllDataSourceResponseBody body) { this.body = body; return this; } @Override public DescribeAllDataSourceResponse build() { return new DescribeAllDataSourceResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAllDataSourceResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAllDataSourceResponseBody} extends {@link TeaModel} * * <p>DescribeAllDataSourceResponseBody</p> */ public class DescribeAllDataSourceResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeAllDataSourceResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeAllDataSourceResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public java.util.List<ResultObject> getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private java.util.List<ResultObject> resultObject; private Builder() { } private Builder(DescribeAllDataSourceResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } public DescribeAllDataSourceResponseBody build() { return new DescribeAllDataSourceResponseBody(this); } } /** * * {@link DescribeAllDataSourceResponseBody} extends {@link TeaModel} * * <p>DescribeAllDataSourceResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.NameInMap("eventName") private String eventName; @com.aliyun.core.annotation.NameInMap("id") private Long id; private ResultObject(Builder builder) { this.eventCode = builder.eventCode; this.eventName = builder.eventName; this.id = builder.id; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return id */ public Long getId() { return this.id; } public static final class Builder { private String eventCode; private String eventName; private Long id; private Builder() { } private Builder(ResultObject model) { this.eventCode = model.eventCode; this.eventName = model.eventName; this.id = model.id; } /** * <p>Event code</p> * * <strong>example:</strong> * <p>de_aszbjb7236</p> */ public Builder eventCode(String eventCode) { this.eventCode = eventCode; return this; } /** * <p>Event name.</p> * * <strong>example:</strong> * <p>注册风险</p> */ public Builder eventName(String eventName) { this.eventName = eventName; return this; } /** * <p>Policy primary key ID</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAllEventNameAndCodeRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAllEventNameAndCodeRequest} extends {@link RequestModel} * * <p>DescribeAllEventNameAndCodeRequest</p> */ public class DescribeAllEventNameAndCodeRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("createType") private String createType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeAllEventNameAndCodeRequest(Builder builder) { super(builder); this.lang = builder.lang; this.createType = builder.createType; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeAllEventNameAndCodeRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return createType */ public String getCreateType() { return this.createType; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeAllEventNameAndCodeRequest, Builder> { private String lang; private String createType; private String regId; private Builder() { super(); } private Builder(DescribeAllEventNameAndCodeRequest request) { super(request); this.lang = request.lang; this.createType = request.createType; this.regId = request.regId; } /** * <p>Sets the language type for the request and response messages, with a default value of <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Creation type</p> * * <strong>example:</strong> * <p>NORMAL</p> */ public Builder createType(String createType) { this.putQueryParameter("createType", createType); this.createType = createType; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeAllEventNameAndCodeRequest build() { return new DescribeAllEventNameAndCodeRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAllEventNameAndCodeResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAllEventNameAndCodeResponse} extends {@link TeaModel} * * <p>DescribeAllEventNameAndCodeResponse</p> */ public class DescribeAllEventNameAndCodeResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAllEventNameAndCodeResponseBody body; private DescribeAllEventNameAndCodeResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAllEventNameAndCodeResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAllEventNameAndCodeResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAllEventNameAndCodeResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAllEventNameAndCodeResponseBody body); @Override DescribeAllEventNameAndCodeResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAllEventNameAndCodeResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAllEventNameAndCodeResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAllEventNameAndCodeResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAllEventNameAndCodeResponseBody body) { this.body = body; return this; } @Override public DescribeAllEventNameAndCodeResponse build() { return new DescribeAllEventNameAndCodeResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAllEventNameAndCodeResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAllEventNameAndCodeResponseBody} extends {@link TeaModel} * * <p>DescribeAllEventNameAndCodeResponseBody</p> */ public class DescribeAllEventNameAndCodeResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("code") private String code; @com.aliyun.core.annotation.NameInMap("httpStatusCode") private String httpStatusCode; @com.aliyun.core.annotation.NameInMap("message") private String message; @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; @com.aliyun.core.annotation.NameInMap("success") private Boolean success; private DescribeAllEventNameAndCodeResponseBody(Builder builder) { this.code = builder.code; this.httpStatusCode = builder.httpStatusCode; this.message = builder.message; this.requestId = builder.requestId; this.resultObject = builder.resultObject; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static DescribeAllEventNameAndCodeResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return code */ public String getCode() { return this.code; } /** * @return httpStatusCode */ public String getHttpStatusCode() { return this.httpStatusCode; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public java.util.List<ResultObject> getResultObject() { return this.resultObject; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private String httpStatusCode; private String message; private String requestId; private java.util.List<ResultObject> resultObject; private Boolean success; private Builder() { } private Builder(DescribeAllEventNameAndCodeResponseBody model) { this.code = model.code; this.httpStatusCode = model.httpStatusCode; this.message = model.message; this.requestId = model.requestId; this.resultObject = model.resultObject; this.success = model.success; } /** * <p>Status code.</p> * * <strong>example:</strong> * <p>200</p> */ public Builder code(String code) { this.code = code; return this; } /** * <p>HTTP status code</p> * * <strong>example:</strong> * <p>200</p> */ public Builder httpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } /** * <p>Error message.</p> * * <strong>example:</strong> * <p>The input parameter data is not valid. order_storage_company_num component not found</p> */ public Builder message(String message) { this.message = message; return this; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } /** * <p>Whether the operation was successful.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder success(Boolean success) { this.success = success; return this; } public DescribeAllEventNameAndCodeResponseBody build() { return new DescribeAllEventNameAndCodeResponseBody(this); } } /** * * {@link DescribeAllEventNameAndCodeResponseBody} extends {@link TeaModel} * * <p>DescribeAllEventNameAndCodeResponseBody</p> */ public static class Children extends TeaModel { @com.aliyun.core.annotation.NameInMap("createType") private String createType; @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.NameInMap("eventName") private String eventName; @com.aliyun.core.annotation.NameInMap("eventType") private String eventType; private Children(Builder builder) { this.createType = builder.createType; this.eventCode = builder.eventCode; this.eventName = builder.eventName; this.eventType = builder.eventType; } public static Builder builder() { return new Builder(); } public static Children create() { return builder().build(); } /** * @return createType */ public String getCreateType() { return this.createType; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return eventType */ public String getEventType() { return this.eventType; } public static final class Builder { private String createType; private String eventCode; private String eventName; private String eventType; private Builder() { } private Builder(Children model) { this.createType = model.createType; this.eventCode = model.eventCode; this.eventName = model.eventName; this.eventType = model.eventType; } /** * <p>Creation type</p> * * <strong>example:</strong> * <p>NORMAL</p> */ public Builder createType(String createType) { this.createType = createType; return this; } /** * <p>Event code</p> * * <strong>example:</strong> * <p>de_aamexg3015</p> */ public Builder eventCode(String eventCode) { this.eventCode = eventCode; return this; } /** * <p>Event name.</p> * * <strong>example:</strong> * <p>注册风险旁路</p> */ public Builder eventName(String eventName) { this.eventName = eventName; return this; } /** * <p>Event type</p> * * <strong>example:</strong> * <p>BYPASS</p> */ public Builder eventType(String eventType) { this.eventType = eventType; return this; } public Children build() { return new Children(this); } } } /** * * {@link DescribeAllEventNameAndCodeResponseBody} extends {@link TeaModel} * * <p>DescribeAllEventNameAndCodeResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("children") private java.util.List<Children> children; @com.aliyun.core.annotation.NameInMap("createType") private String createType; @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.NameInMap("eventName") private String eventName; @com.aliyun.core.annotation.NameInMap("eventType") private String eventType; private ResultObject(Builder builder) { this.children = builder.children; this.createType = builder.createType; this.eventCode = builder.eventCode; this.eventName = builder.eventName; this.eventType = builder.eventType; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return children */ public java.util.List<Children> getChildren() { return this.children; } /** * @return createType */ public String getCreateType() { return this.createType; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return eventType */ public String getEventType() { return this.eventType; } public static final class Builder { private java.util.List<Children> children; private String createType; private String eventCode; private String eventName; private String eventType; private Builder() { } private Builder(ResultObject model) { this.children = model.children; this.createType = model.createType; this.eventCode = model.eventCode; this.eventName = model.eventName; this.eventType = model.eventType; } /** * <p>List of child fields.</p> */ public Builder children(java.util.List<Children> children) { this.children = children; return this; } /** * <p>Creation type</p> * * <strong>example:</strong> * <p>MORMAL</p> */ public Builder createType(String createType) { this.createType = createType; return this; } /** * <p>Event code</p> * * <strong>example:</strong> * <p>de_aszbjb7236</p> */ public Builder eventCode(String eventCode) { this.eventCode = eventCode; return this; } /** * <p>Event name.</p> * * <strong>example:</strong> * <p>注册风险</p> */ public Builder eventName(String eventName) { this.eventName = eventName; return this; } /** * <p>Event type</p> * * <strong>example:</strong> * <p>MAIN</p> */ public Builder eventType(String eventType) { this.eventType = eventType; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAllRootVariableRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAllRootVariableRequest} extends {@link RequestModel} * * <p>DescribeAllRootVariableRequest</p> */ public class DescribeAllRootVariableRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("SourceIp") private String sourceIp; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("deviceVariableIds") private String deviceVariableIds; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("expressionVariableIds") private String expressionVariableIds; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("nativeVariableIds") private String nativeVariableIds; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("queryVariableIds") private String queryVariableIds; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("velocityVariableIds") private String velocityVariableIds; private DescribeAllRootVariableRequest(Builder builder) { super(builder); this.lang = builder.lang; this.sourceIp = builder.sourceIp; this.deviceVariableIds = builder.deviceVariableIds; this.eventCode = builder.eventCode; this.expressionVariableIds = builder.expressionVariableIds; this.id = builder.id; this.nativeVariableIds = builder.nativeVariableIds; this.queryVariableIds = builder.queryVariableIds; this.regId = builder.regId; this.velocityVariableIds = builder.velocityVariableIds; } public static Builder builder() { return new Builder(); } public static DescribeAllRootVariableRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return deviceVariableIds */ public String getDeviceVariableIds() { return this.deviceVariableIds; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return expressionVariableIds */ public String getExpressionVariableIds() { return this.expressionVariableIds; } /** * @return id */ public Long getId() { return this.id; } /** * @return nativeVariableIds */ public String getNativeVariableIds() { return this.nativeVariableIds; } /** * @return queryVariableIds */ public String getQueryVariableIds() { return this.queryVariableIds; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return velocityVariableIds */ public String getVelocityVariableIds() { return this.velocityVariableIds; } public static final class Builder extends Request.Builder<DescribeAllRootVariableRequest, Builder> { private String lang; private String sourceIp; private String deviceVariableIds; private String eventCode; private String expressionVariableIds; private Long id; private String nativeVariableIds; private String queryVariableIds; private String regId; private String velocityVariableIds; private Builder() { super(); } private Builder(DescribeAllRootVariableRequest request) { super(request); this.lang = request.lang; this.sourceIp = request.sourceIp; this.deviceVariableIds = request.deviceVariableIds; this.eventCode = request.eventCode; this.expressionVariableIds = request.expressionVariableIds; this.id = request.id; this.nativeVariableIds = request.nativeVariableIds; this.queryVariableIds = request.queryVariableIds; this.regId = request.regId; this.velocityVariableIds = request.velocityVariableIds; } /** * <p>Set the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Request source IP. No need to fill in, the system will automatically obtain it.</p> * * <strong>example:</strong> * <p>61.169.104.202</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>Device variable list</p> * * <strong>example:</strong> * <p>[180]</p> */ public Builder deviceVariableIds(String deviceVariableIds) { this.putQueryParameter("deviceVariableIds", deviceVariableIds); this.deviceVariableIds = deviceVariableIds; return this; } /** * <p>Event code</p> * * <strong>example:</strong> * <p>de_arqbuy7206</p> */ public Builder eventCode(String eventCode) { this.putQueryParameter("eventCode", eventCode); this.eventCode = eventCode; return this; } /** * <p>Custom variable list</p> * * <strong>example:</strong> * <p>[6780]</p> */ public Builder expressionVariableIds(String expressionVariableIds) { this.putQueryParameter("expressionVariableIds", expressionVariableIds); this.expressionVariableIds = expressionVariableIds; return this; } /** * <p>Variable ID.</p> * * <strong>example:</strong> * <p>2557</p> */ public Builder id(Long id) { this.putQueryParameter("id", id); this.id = id; return this; } /** * <p>Event field list</p> * * <strong>example:</strong> * <p>[106780]</p> */ public Builder nativeVariableIds(String nativeVariableIds) { this.putQueryParameter("nativeVariableIds", nativeVariableIds); this.nativeVariableIds = nativeVariableIds; return this; } /** * <p>Custom query variable</p> * * <strong>example:</strong> * <p>[2678]</p> */ public Builder queryVariableIds(String queryVariableIds) { this.putQueryParameter("queryVariableIds", queryVariableIds); this.queryVariableIds = queryVariableIds; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } /** * <p>Custom cumulative variable</p> * * <strong>example:</strong> * <p>[780]</p> */ public Builder velocityVariableIds(String velocityVariableIds) { this.putQueryParameter("velocityVariableIds", velocityVariableIds); this.velocityVariableIds = velocityVariableIds; return this; } @Override public DescribeAllRootVariableRequest build() { return new DescribeAllRootVariableRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAllRootVariableResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAllRootVariableResponse} extends {@link TeaModel} * * <p>DescribeAllRootVariableResponse</p> */ public class DescribeAllRootVariableResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAllRootVariableResponseBody body; private DescribeAllRootVariableResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAllRootVariableResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAllRootVariableResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAllRootVariableResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAllRootVariableResponseBody body); @Override DescribeAllRootVariableResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAllRootVariableResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAllRootVariableResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAllRootVariableResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAllRootVariableResponseBody body) { this.body = body; return this; } @Override public DescribeAllRootVariableResponse build() { return new DescribeAllRootVariableResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAllRootVariableResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAllRootVariableResponseBody} extends {@link TeaModel} * * <p>DescribeAllRootVariableResponseBody</p> */ public class DescribeAllRootVariableResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeAllRootVariableResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeAllRootVariableResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public java.util.List<ResultObject> getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private java.util.List<ResultObject> resultObject; private Builder() { } private Builder(DescribeAllRootVariableResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } public DescribeAllRootVariableResponseBody build() { return new DescribeAllRootVariableResponseBody(this); } } /** * * {@link DescribeAllRootVariableResponseBody} extends {@link TeaModel} * * <p>DescribeAllRootVariableResponseBody</p> */ public static class OutputThreshold extends TeaModel { @com.aliyun.core.annotation.NameInMap("maxValue") private Double maxValue; @com.aliyun.core.annotation.NameInMap("minValue") private Double minValue; private OutputThreshold(Builder builder) { this.maxValue = builder.maxValue; this.minValue = builder.minValue; } public static Builder builder() { return new Builder(); } public static OutputThreshold create() { return builder().build(); } /** * @return maxValue */ public Double getMaxValue() { return this.maxValue; } /** * @return minValue */ public Double getMinValue() { return this.minValue; } public static final class Builder { private Double maxValue; private Double minValue; private Builder() { } private Builder(OutputThreshold model) { this.maxValue = model.maxValue; this.minValue = model.minValue; } /** * <p>Maximum value</p> * * <strong>example:</strong> * <p>1000</p> */ public Builder maxValue(Double maxValue) { this.maxValue = maxValue; return this; } /** * <p>Minimum value.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder minValue(Double minValue) { this.minValue = minValue; return this; } public OutputThreshold build() { return new OutputThreshold(this); } } } /** * * {@link DescribeAllRootVariableResponseBody} extends {@link TeaModel} * * <p>DescribeAllRootVariableResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("code") private String code; @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("displayType") private String displayType; @com.aliyun.core.annotation.NameInMap("favoriteFlag") private Boolean favoriteFlag; @com.aliyun.core.annotation.NameInMap("fieldRank") private Long fieldRank; @com.aliyun.core.annotation.NameInMap("fieldType") private String fieldType; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("inputFieldType") private String inputFieldType; @com.aliyun.core.annotation.NameInMap("inputs") private String inputs; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("outputThreshold") private OutputThreshold outputThreshold; @com.aliyun.core.annotation.NameInMap("sourceType") private String sourceType; @com.aliyun.core.annotation.NameInMap("title") private String title; @com.aliyun.core.annotation.NameInMap("type") private String type; private ResultObject(Builder builder) { this.code = builder.code; this.description = builder.description; this.displayType = builder.displayType; this.favoriteFlag = builder.favoriteFlag; this.fieldRank = builder.fieldRank; this.fieldType = builder.fieldType; this.id = builder.id; this.inputFieldType = builder.inputFieldType; this.inputs = builder.inputs; this.name = builder.name; this.outputThreshold = builder.outputThreshold; this.sourceType = builder.sourceType; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return description */ public String getDescription() { return this.description; } /** * @return displayType */ public String getDisplayType() { return this.displayType; } /** * @return favoriteFlag */ public Boolean getFavoriteFlag() { return this.favoriteFlag; } /** * @return fieldRank */ public Long getFieldRank() { return this.fieldRank; } /** * @return fieldType */ public String getFieldType() { return this.fieldType; } /** * @return id */ public Long getId() { return this.id; } /** * @return inputFieldType */ public String getInputFieldType() { return this.inputFieldType; } /** * @return inputs */ public String getInputs() { return this.inputs; } /** * @return name */ public String getName() { return this.name; } /** * @return outputThreshold */ public OutputThreshold getOutputThreshold() { return this.outputThreshold; } /** * @return sourceType */ public String getSourceType() { return this.sourceType; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String code; private String description; private String displayType; private Boolean favoriteFlag; private Long fieldRank; private String fieldType; private Long id; private String inputFieldType; private String inputs; private String name; private OutputThreshold outputThreshold; private String sourceType; private String title; private String type; private Builder() { } private Builder(ResultObject model) { this.code = model.code; this.description = model.description; this.displayType = model.displayType; this.favoriteFlag = model.favoriteFlag; this.fieldRank = model.fieldRank; this.fieldType = model.fieldType; this.id = model.id; this.inputFieldType = model.inputFieldType; this.inputs = model.inputs; this.name = model.name; this.outputThreshold = model.outputThreshold; this.sourceType = model.sourceType; this.title = model.title; this.type = model.type; } /** * <p>Variable code</p> * * <strong>example:</strong> * <p>age</p> */ public Builder code(String code) { this.code = code; return this; } /** * <p>Variable description.</p> * * <strong>example:</strong> * <p>年龄</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Display type and group label</p> * * <strong>example:</strong> * <p>NATIVE</p> */ public Builder displayType(String displayType) { this.displayType = displayType; return this; } /** * <p>Favorite flag</p> * * <strong>example:</strong> * <p>true</p> */ public Builder favoriteFlag(Boolean favoriteFlag) { this.favoriteFlag = favoriteFlag; return this; } /** * <p>Field ranking</p> * * <strong>example:</strong> * <p>1</p> */ public Builder fieldRank(Long fieldRank) { this.fieldRank = fieldRank; return this; } /** * <p>Field type.</p> * * <strong>example:</strong> * <p>STRING</p> */ public Builder fieldType(String fieldType) { this.fieldType = fieldType; return this; } /** * <p>Variable ID.</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Input field type.</p> * * <strong>example:</strong> * <p>STRING</p> */ public Builder inputFieldType(String inputFieldType) { this.inputFieldType = inputFieldType; return this; } /** * <p>Variable input.</p> * * <strong>example:</strong> * <p>age</p> */ public Builder inputs(String inputs) { this.inputs = inputs; return this; } /** * <p>Variable name.</p> * * <strong>example:</strong> * <p>age</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Maximum cross-sectional area of the checkbox.</p> */ public Builder outputThreshold(OutputThreshold outputThreshold) { this.outputThreshold = outputThreshold; return this; } /** * <p>Data source</p> * * <strong>example:</strong> * <p>SAF</p> */ public Builder sourceType(String sourceType) { this.sourceType = sourceType; return this; } /** * <p>Title.</p> * * <strong>example:</strong> * <p>年龄</p> */ public Builder title(String title) { this.title = title; return this; } /** * <p>Variable type.</p> * * <strong>example:</strong> * <p>NATIVE</p> */ public Builder type(String type) { this.type = type; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAnalysisColumnFieldListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAnalysisColumnFieldListRequest} extends {@link RequestModel} * * <p>DescribeAnalysisColumnFieldListRequest</p> */ public class DescribeAnalysisColumnFieldListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DescribeAnalysisColumnFieldListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeAnalysisColumnFieldListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeAnalysisColumnFieldListRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeAnalysisColumnFieldListRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; } /** * <p>Set the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeAnalysisColumnFieldListRequest build() { return new DescribeAnalysisColumnFieldListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAnalysisColumnFieldListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAnalysisColumnFieldListResponse} extends {@link TeaModel} * * <p>DescribeAnalysisColumnFieldListResponse</p> */ public class DescribeAnalysisColumnFieldListResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAnalysisColumnFieldListResponseBody body; private DescribeAnalysisColumnFieldListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAnalysisColumnFieldListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAnalysisColumnFieldListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAnalysisColumnFieldListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAnalysisColumnFieldListResponseBody body); @Override DescribeAnalysisColumnFieldListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAnalysisColumnFieldListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAnalysisColumnFieldListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAnalysisColumnFieldListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAnalysisColumnFieldListResponseBody body) { this.body = body; return this; } @Override public DescribeAnalysisColumnFieldListResponse build() { return new DescribeAnalysisColumnFieldListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAnalysisColumnFieldListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAnalysisColumnFieldListResponseBody} extends {@link TeaModel} * * <p>DescribeAnalysisColumnFieldListResponseBody</p> */ public class DescribeAnalysisColumnFieldListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeAnalysisColumnFieldListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeAnalysisColumnFieldListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DescribeAnalysisColumnFieldListResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DescribeAnalysisColumnFieldListResponseBody build() { return new DescribeAnalysisColumnFieldListResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAnalysisColumnListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAnalysisColumnListRequest} extends {@link RequestModel} * * <p>DescribeAnalysisColumnListRequest</p> */ public class DescribeAnalysisColumnListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DescribeAnalysisColumnListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeAnalysisColumnListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeAnalysisColumnListRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeAnalysisColumnListRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeAnalysisColumnListRequest build() { return new DescribeAnalysisColumnListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAnalysisColumnListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAnalysisColumnListResponse} extends {@link TeaModel} * * <p>DescribeAnalysisColumnListResponse</p> */ public class DescribeAnalysisColumnListResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAnalysisColumnListResponseBody body; private DescribeAnalysisColumnListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAnalysisColumnListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAnalysisColumnListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAnalysisColumnListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAnalysisColumnListResponseBody body); @Override DescribeAnalysisColumnListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAnalysisColumnListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAnalysisColumnListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAnalysisColumnListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAnalysisColumnListResponseBody body) { this.body = body; return this; } @Override public DescribeAnalysisColumnListResponse build() { return new DescribeAnalysisColumnListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAnalysisColumnListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAnalysisColumnListResponseBody} extends {@link TeaModel} * * <p>DescribeAnalysisColumnListResponseBody</p> */ public class DescribeAnalysisColumnListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeAnalysisColumnListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeAnalysisColumnListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public java.util.List<ResultObject> getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private java.util.List<ResultObject> resultObject; private Builder() { } private Builder(DescribeAnalysisColumnListResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } public DescribeAnalysisColumnListResponseBody build() { return new DescribeAnalysisColumnListResponseBody(this); } } /** * * {@link DescribeAnalysisColumnListResponseBody} extends {@link TeaModel} * * <p>DescribeAnalysisColumnListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.NameInMap("eventName") private String eventName; @com.aliyun.core.annotation.NameInMap("isDefault") private Boolean isDefault; @com.aliyun.core.annotation.NameInMap("variableName") private String variableName; @com.aliyun.core.annotation.NameInMap("variableTitle") private String variableTitle; @com.aliyun.core.annotation.NameInMap("variableType") private String variableType; private ResultObject(Builder builder) { this.eventCode = builder.eventCode; this.eventName = builder.eventName; this.isDefault = builder.isDefault; this.variableName = builder.variableName; this.variableTitle = builder.variableTitle; this.variableType = builder.variableType; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return isDefault */ public Boolean getIsDefault() { return this.isDefault; } /** * @return variableName */ public String getVariableName() { return this.variableName; } /** * @return variableTitle */ public String getVariableTitle() { return this.variableTitle; } /** * @return variableType */ public String getVariableType() { return this.variableType; } public static final class Builder { private String eventCode; private String eventName; private Boolean isDefault; private String variableName; private String variableTitle; private String variableType; private Builder() { } private Builder(ResultObject model) { this.eventCode = model.eventCode; this.eventName = model.eventName; this.isDefault = model.isDefault; this.variableName = model.variableName; this.variableTitle = model.variableTitle; this.variableType = model.variableType; } /** * <p>Event code</p> * * <strong>example:</strong> * <p>de_aszbjb7236</p> */ public Builder eventCode(String eventCode) { this.eventCode = eventCode; return this; } /** * <p>Event name.</p> * * <strong>example:</strong> * <p>注册风险</p> */ public Builder eventName(String eventName) { this.eventName = eventName; return this; } /** * <p>Whether it is a default column.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder isDefault(Boolean isDefault) { this.isDefault = isDefault; return this; } /** * <p>Variable name.</p> * * <strong>example:</strong> * <p>age</p> */ public Builder variableName(String variableName) { this.variableName = variableName; return this; } /** * <p>Variable title.</p> * * <strong>example:</strong> * <p>年龄</p> */ public Builder variableTitle(String variableTitle) { this.variableTitle = variableTitle; return this; } /** * <p>Variable type.</p> * * <strong>example:</strong> * <p>NATIVE</p> */ public Builder variableType(String variableType) { this.variableType = variableType; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAnalysisConditionFavoriteListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAnalysisConditionFavoriteListRequest} extends {@link RequestModel} * * <p>DescribeAnalysisConditionFavoriteListRequest</p> */ public class DescribeAnalysisConditionFavoriteListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DescribeAnalysisConditionFavoriteListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeAnalysisConditionFavoriteListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeAnalysisConditionFavoriteListRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeAnalysisConditionFavoriteListRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeAnalysisConditionFavoriteListRequest build() { return new DescribeAnalysisConditionFavoriteListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAnalysisConditionFavoriteListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAnalysisConditionFavoriteListResponse} extends {@link TeaModel} * * <p>DescribeAnalysisConditionFavoriteListResponse</p> */ public class DescribeAnalysisConditionFavoriteListResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAnalysisConditionFavoriteListResponseBody body; private DescribeAnalysisConditionFavoriteListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAnalysisConditionFavoriteListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAnalysisConditionFavoriteListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAnalysisConditionFavoriteListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAnalysisConditionFavoriteListResponseBody body); @Override DescribeAnalysisConditionFavoriteListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAnalysisConditionFavoriteListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAnalysisConditionFavoriteListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAnalysisConditionFavoriteListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAnalysisConditionFavoriteListResponseBody body) { this.body = body; return this; } @Override public DescribeAnalysisConditionFavoriteListResponse build() { return new DescribeAnalysisConditionFavoriteListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAnalysisConditionFavoriteListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAnalysisConditionFavoriteListResponseBody} extends {@link TeaModel} * * <p>DescribeAnalysisConditionFavoriteListResponseBody</p> */ public class DescribeAnalysisConditionFavoriteListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeAnalysisConditionFavoriteListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeAnalysisConditionFavoriteListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public java.util.List<ResultObject> getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private java.util.List<ResultObject> resultObject; private Builder() { } private Builder(DescribeAnalysisConditionFavoriteListResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } public DescribeAnalysisConditionFavoriteListResponseBody build() { return new DescribeAnalysisConditionFavoriteListResponseBody(this); } } /** * * {@link DescribeAnalysisConditionFavoriteListResponseBody} extends {@link TeaModel} * * <p>DescribeAnalysisConditionFavoriteListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("condition") private String condition; @com.aliyun.core.annotation.NameInMap("eventBeginTime") private Long eventBeginTime; @com.aliyun.core.annotation.NameInMap("eventCodes") private String eventCodes; @com.aliyun.core.annotation.NameInMap("eventEndTime") private Long eventEndTime; @com.aliyun.core.annotation.NameInMap("fieldName") private String fieldName; @com.aliyun.core.annotation.NameInMap("fieldValue") private String fieldValue; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("type") private String type; private ResultObject(Builder builder) { this.condition = builder.condition; this.eventBeginTime = builder.eventBeginTime; this.eventCodes = builder.eventCodes; this.eventEndTime = builder.eventEndTime; this.fieldName = builder.fieldName; this.fieldValue = builder.fieldValue; this.id = builder.id; this.name = builder.name; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return condition */ public String getCondition() { return this.condition; } /** * @return eventBeginTime */ public Long getEventBeginTime() { return this.eventBeginTime; } /** * @return eventCodes */ public String getEventCodes() { return this.eventCodes; } /** * @return eventEndTime */ public Long getEventEndTime() { return this.eventEndTime; } /** * @return fieldName */ public String getFieldName() { return this.fieldName; } /** * @return fieldValue */ public String getFieldValue() { return this.fieldValue; } /** * @return id */ public Long getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String condition; private Long eventBeginTime; private String eventCodes; private Long eventEndTime; private String fieldName; private String fieldValue; private Long id; private String name; private String type; private Builder() { } private Builder(ResultObject model) { this.condition = model.condition; this.eventBeginTime = model.eventBeginTime; this.eventCodes = model.eventCodes; this.eventEndTime = model.eventEndTime; this.fieldName = model.fieldName; this.fieldValue = model.fieldValue; this.id = model.id; this.name = model.name; this.type = model.type; } /** * <p>Condition value.</p> * * <strong>example:</strong> * <p>{&quot;currentId&quot;:1,&quot;deepCount&quot;:0,&quot;list&quot;:[{&quot;currentId&quot;:2,&quot;deepCount&quot;:1,&quot;left&quot;:{&quot;code&quot;:&quot;accountId&quot;,&quot;fieldType&quot;:&quot;STRING&quot;,&quot;functionName&quot;:&quot;&quot;,&quot;hasRightVariable&quot;:false,&quot;name&quot;:&quot;accountId&quot;},&quot;operatorCode&quot;:&quot;isNotEmptyWrapper&quot;,&quot;parentId&quot;:1,&quot;right&quot;:{&quot;code&quot;:&quot;&quot;A\nB\nC&quot;&quot;,&quot;functionName&quot;:&quot;&quot;,&quot;name&quot;:&quot;&quot;,&quot;rightVariableType&quot;:&quot;constant&quot;}}],&quot;parentId&quot;:0,&quot;relationship&quot;:&quot;and&quot;}</p> */ public Builder condition(String condition) { this.condition = condition; return this; } /** * <p>Event start timestamp.</p> * * <strong>example:</strong> * <p>1752076800000</p> */ public Builder eventBeginTime(Long eventBeginTime) { this.eventBeginTime = eventBeginTime; return this; } /** * <p>Event codes.</p> * * <strong>example:</strong> * <p>de_ahespg8137</p> */ public Builder eventCodes(String eventCodes) { this.eventCodes = eventCodes; return this; } /** * <p>Event end time.</p> * * <strong>example:</strong> * <p>1753891199000</p> */ public Builder eventEndTime(Long eventEndTime) { this.eventEndTime = eventEndTime; return this; } /** * <p>Field name.</p> * * <strong>example:</strong> * <p>age</p> */ public Builder fieldName(String fieldName) { this.fieldName = fieldName; return this; } /** * <p>Field value.</p> * * <strong>example:</strong> * <p>20</p> */ public Builder fieldValue(String fieldValue) { this.fieldValue = fieldValue; return this; } /** * <p>Primary key ID</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Condition name</p> * * <strong>example:</strong> * <p>查询条件1</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Type, BASIC: Basic query, ADVANCE: Advanced query, BATCH: Batch query</p> * * <strong>example:</strong> * <p>BASIC</p> */ public Builder type(String type) { this.type = type; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAnalysisExportTaskDownloadUrlRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAnalysisExportTaskDownloadUrlRequest} extends {@link RequestModel} * * <p>DescribeAnalysisExportTaskDownloadUrlRequest</p> */ public class DescribeAnalysisExportTaskDownloadUrlRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DescribeAnalysisExportTaskDownloadUrlRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeAnalysisExportTaskDownloadUrlRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeAnalysisExportTaskDownloadUrlRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeAnalysisExportTaskDownloadUrlRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeAnalysisExportTaskDownloadUrlRequest build() { return new DescribeAnalysisExportTaskDownloadUrlRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAnalysisExportTaskDownloadUrlResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAnalysisExportTaskDownloadUrlResponse} extends {@link TeaModel} * * <p>DescribeAnalysisExportTaskDownloadUrlResponse</p> */ public class DescribeAnalysisExportTaskDownloadUrlResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAnalysisExportTaskDownloadUrlResponseBody body; private DescribeAnalysisExportTaskDownloadUrlResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAnalysisExportTaskDownloadUrlResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAnalysisExportTaskDownloadUrlResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAnalysisExportTaskDownloadUrlResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAnalysisExportTaskDownloadUrlResponseBody body); @Override DescribeAnalysisExportTaskDownloadUrlResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAnalysisExportTaskDownloadUrlResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAnalysisExportTaskDownloadUrlResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAnalysisExportTaskDownloadUrlResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAnalysisExportTaskDownloadUrlResponseBody body) { this.body = body; return this; } @Override public DescribeAnalysisExportTaskDownloadUrlResponse build() { return new DescribeAnalysisExportTaskDownloadUrlResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAnalysisExportTaskDownloadUrlResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAnalysisExportTaskDownloadUrlResponseBody} extends {@link TeaModel} * * <p>DescribeAnalysisExportTaskDownloadUrlResponseBody</p> */ public class DescribeAnalysisExportTaskDownloadUrlResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeAnalysisExportTaskDownloadUrlResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeAnalysisExportTaskDownloadUrlResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public ResultObject getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private ResultObject resultObject; private Builder() { } private Builder(DescribeAnalysisExportTaskDownloadUrlResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } public DescribeAnalysisExportTaskDownloadUrlResponseBody build() { return new DescribeAnalysisExportTaskDownloadUrlResponseBody(this); } } /** * * {@link DescribeAnalysisExportTaskDownloadUrlResponseBody} extends {@link TeaModel} * * <p>DescribeAnalysisExportTaskDownloadUrlResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("downloadFileUrl") private String downloadFileUrl; @com.aliyun.core.annotation.NameInMap("executeTime") private Long executeTime; @com.aliyun.core.annotation.NameInMap("status") private String status; private ResultObject(Builder builder) { this.downloadFileUrl = builder.downloadFileUrl; this.executeTime = builder.executeTime; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return downloadFileUrl */ public String getDownloadFileUrl() { return this.downloadFileUrl; } /** * @return executeTime */ public Long getExecuteTime() { return this.executeTime; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder { private String downloadFileUrl; private Long executeTime; private String status; private Builder() { } private Builder(ResultObject model) { this.downloadFileUrl = model.downloadFileUrl; this.executeTime = model.executeTime; this.status = model.status; } /** * <p>Download URL.</p> * * <strong>example:</strong> * <p><a href="https://xxxxx-oss-xxxxx.xxxxxx.aliyuncs.com/xx/xx/xxx/xxxxxx.csv?Expires=1753433384&OSSAccessKeyId=xxxxxxxxx&Signature=%2F%xxxxxxxxxxxx%3D">https://xxxxx-oss-xxxxx.xxxxxx.aliyuncs.com/xx/xx/xxx/xxxxxx.csv?Expires=1753433384&amp;OSSAccessKeyId=xxxxxxxxx&amp;Signature=%2F%xxxxxxxxxxxx%3D</a></p> */ public Builder downloadFileUrl(String downloadFileUrl) { this.downloadFileUrl = downloadFileUrl; return this; } /** * <p>Download execution time</p> * * <strong>example:</strong> * <p>1753891199000</p> */ public Builder executeTime(Long executeTime) { this.executeTime = executeTime; return this; } /** * <p>Task status.</p> * * <strong>example:</strong> * <p>SUCCESS</p> */ public Builder status(String status) { this.status = status; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiGroupsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiGroupsRequest} extends {@link RequestModel} * * <p>DescribeApiGroupsRequest</p> */ public class DescribeApiGroupsRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("apiRegionId") @com.aliyun.core.annotation.Validation(required = true) private String apiRegionId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeApiGroupsRequest(Builder builder) { super(builder); this.lang = builder.lang; this.apiRegionId = builder.apiRegionId; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeApiGroupsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return apiRegionId */ public String getApiRegionId() { return this.apiRegionId; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeApiGroupsRequest, Builder> { private String lang; private String apiRegionId; private String regId; private Builder() { super(); } private Builder(DescribeApiGroupsRequest request) { super(request); this.lang = request.lang; this.apiRegionId = request.apiRegionId; this.regId = request.regId; } /** * <p>Set the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Region ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder apiRegionId(String apiRegionId) { this.putQueryParameter("apiRegionId", apiRegionId); this.apiRegionId = apiRegionId; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeApiGroupsRequest build() { return new DescribeApiGroupsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiGroupsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiGroupsResponse} extends {@link TeaModel} * * <p>DescribeApiGroupsResponse</p> */ public class DescribeApiGroupsResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeApiGroupsResponseBody body; private DescribeApiGroupsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeApiGroupsResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeApiGroupsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeApiGroupsResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeApiGroupsResponseBody body); @Override DescribeApiGroupsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeApiGroupsResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeApiGroupsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeApiGroupsResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeApiGroupsResponseBody body) { this.body = body; return this; } @Override public DescribeApiGroupsResponse build() { return new DescribeApiGroupsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiGroupsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiGroupsResponseBody} extends {@link TeaModel} * * <p>DescribeApiGroupsResponseBody</p> */ public class DescribeApiGroupsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeApiGroupsResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeApiGroupsResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DescribeApiGroupsResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DescribeApiGroupsResponseBody build() { return new DescribeApiGroupsResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiLimitRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiLimitRequest} extends {@link RequestModel} * * <p>DescribeApiLimitRequest</p> */ public class DescribeApiLimitRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeApiLimitRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeApiLimitRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeApiLimitRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeApiLimitRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeApiLimitRequest build() { return new DescribeApiLimitRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiLimitResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiLimitResponse} extends {@link TeaModel} * * <p>DescribeApiLimitResponse</p> */ public class DescribeApiLimitResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeApiLimitResponseBody body; private DescribeApiLimitResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeApiLimitResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeApiLimitResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeApiLimitResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeApiLimitResponseBody body); @Override DescribeApiLimitResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeApiLimitResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeApiLimitResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeApiLimitResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeApiLimitResponseBody body) { this.body = body; return this; } @Override public DescribeApiLimitResponse build() { return new DescribeApiLimitResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiLimitResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiLimitResponseBody} extends {@link TeaModel} * * <p>DescribeApiLimitResponseBody</p> */ public class DescribeApiLimitResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeApiLimitResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeApiLimitResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public ResultObject getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private ResultObject resultObject; private Builder() { } private Builder(DescribeApiLimitResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } public DescribeApiLimitResponseBody build() { return new DescribeApiLimitResponseBody(this); } } /** * * {@link DescribeApiLimitResponseBody} extends {@link TeaModel} * * <p>DescribeApiLimitResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("limit") private Boolean limit; @com.aliyun.core.annotation.NameInMap("maxTotalItem") private Long maxTotalItem; @com.aliyun.core.annotation.NameInMap("totalItem") private Long totalItem; private ResultObject(Builder builder) { this.limit = builder.limit; this.maxTotalItem = builder.maxTotalItem; this.totalItem = builder.totalItem; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return limit */ public Boolean getLimit() { return this.limit; } /** * @return maxTotalItem */ public Long getMaxTotalItem() { return this.maxTotalItem; } /** * @return totalItem */ public Long getTotalItem() { return this.totalItem; } public static final class Builder { private Boolean limit; private Long maxTotalItem; private Long totalItem; private Builder() { } private Builder(ResultObject model) { this.limit = model.limit; this.maxTotalItem = model.maxTotalItem; this.totalItem = model.totalItem; } /** * <p>Whether the maximum number has been exceeded</p> * * <strong>example:</strong> * <p>true</p> */ public Builder limit(Boolean limit) { this.limit = limit; return this; } /** * <p>Maximum number of items that can be created</p> * * <strong>example:</strong> * <p>150</p> */ public Builder maxTotalItem(Long maxTotalItem) { this.maxTotalItem = maxTotalItem; return this; } /** * <p>Total number of items</p> * * <strong>example:</strong> * <p>31</p> */ public Builder totalItem(Long totalItem) { this.totalItem = totalItem; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiNameListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiNameListRequest} extends {@link RequestModel} * * <p>DescribeApiNameListRequest</p> */ public class DescribeApiNameListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeApiNameListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeApiNameListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeApiNameListRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeApiNameListRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; } /** * <p>Sets the language type for requests and responses, with a default value of <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeApiNameListRequest build() { return new DescribeApiNameListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiNameListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiNameListResponse} extends {@link TeaModel} * * <p>DescribeApiNameListResponse</p> */ public class DescribeApiNameListResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeApiNameListResponseBody body; private DescribeApiNameListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeApiNameListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeApiNameListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeApiNameListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeApiNameListResponseBody body); @Override DescribeApiNameListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeApiNameListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeApiNameListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeApiNameListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeApiNameListResponseBody body) { this.body = body; return this; } @Override public DescribeApiNameListResponse build() { return new DescribeApiNameListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiNameListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiNameListResponseBody} extends {@link TeaModel} * * <p>DescribeApiNameListResponseBody</p> */ public class DescribeApiNameListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeApiNameListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeApiNameListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public java.util.List<ResultObject> getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private java.util.List<ResultObject> resultObject; private Builder() { } private Builder(DescribeApiNameListResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } public DescribeApiNameListResponseBody build() { return new DescribeApiNameListResponseBody(this); } } /** * * {@link DescribeApiNameListResponseBody} extends {@link TeaModel} * * <p>DescribeApiNameListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("apiId") private String apiId; @com.aliyun.core.annotation.NameInMap("apiName") private String apiName; private ResultObject(Builder builder) { this.apiId = builder.apiId; this.apiName = builder.apiName; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return apiId */ public String getApiId() { return this.apiId; } /** * @return apiName */ public String getApiName() { return this.apiName; } public static final class Builder { private String apiId; private String apiName; private Builder() { } private Builder(ResultObject model) { this.apiId = model.apiId; this.apiName = model.apiName; } /** * <p>API ID.</p> * * <strong>example:</strong> * <p>33</p> */ public Builder apiId(String apiId) { this.apiId = apiId; return this; } /** * <p>API name.</p> * * <strong>example:</strong> * <p>ListAuditLog</p> */ public Builder apiName(String apiName) { this.apiName = apiName; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiRequest} extends {@link RequestModel} * * <p>DescribeApiRequest</p> */ public class DescribeApiRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("apiId") @com.aliyun.core.annotation.Validation(required = true) private String apiId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("apiRegionId") @com.aliyun.core.annotation.Validation(required = true) private String apiRegionId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("apiType") @com.aliyun.core.annotation.Validation(required = true) private String apiType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeApiRequest(Builder builder) { super(builder); this.lang = builder.lang; this.apiId = builder.apiId; this.apiRegionId = builder.apiRegionId; this.apiType = builder.apiType; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeApiRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return apiId */ public String getApiId() { return this.apiId; } /** * @return apiRegionId */ public String getApiRegionId() { return this.apiRegionId; } /** * @return apiType */ public String getApiType() { return this.apiType; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeApiRequest, Builder> { private String lang; private String apiId; private String apiRegionId; private String apiType; private String regId; private Builder() { super(); } private Builder(DescribeApiRequest request) { super(request); this.lang = request.lang; this.apiId = request.apiId; this.apiRegionId = request.apiRegionId; this.apiType = request.apiType; this.regId = request.regId; } /** * <p>Set the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>API unique ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>33</p> */ public Builder apiId(String apiId) { this.putQueryParameter("apiId", apiId); this.apiId = apiId; return this; } /** * <p>Region ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou、cn-shanghai</p> */ public Builder apiRegionId(String apiRegionId) { this.putQueryParameter("apiRegionId", apiRegionId); this.apiRegionId = apiRegionId; return this; } /** * <p>API type</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>SELF</p> */ public Builder apiType(String apiType) { this.putQueryParameter("apiType", apiType); this.apiType = apiType; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeApiRequest build() { return new DescribeApiRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiResponse} extends {@link TeaModel} * * <p>DescribeApiResponse</p> */ public class DescribeApiResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeApiResponseBody body; private DescribeApiResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeApiResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeApiResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeApiResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeApiResponseBody body); @Override DescribeApiResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeApiResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeApiResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeApiResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeApiResponseBody body) { this.body = body; return this; } @Override public DescribeApiResponse build() { return new DescribeApiResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiResponseBody} extends {@link TeaModel} * * <p>DescribeApiResponseBody</p> */ public class DescribeApiResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeApiResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeApiResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DescribeApiResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DescribeApiResponseBody build() { return new DescribeApiResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiVariableRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiVariableRequest} extends {@link RequestModel} * * <p>DescribeApiVariableRequest</p> */ public class DescribeApiVariableRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("id") @com.aliyun.core.annotation.Validation(required = true) private String id; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeApiVariableRequest(Builder builder) { super(builder); this.lang = builder.lang; this.id = builder.id; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeApiVariableRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return id */ public String getId() { return this.id; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeApiVariableRequest, Builder> { private String lang; private String id; private String regId; private Builder() { super(); } private Builder(DescribeApiVariableRequest request) { super(request); this.lang = request.lang; this.id = request.id; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Variable ID</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>3144</p> */ public Builder id(String id) { this.putQueryParameter("id", id); this.id = id; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeApiVariableRequest build() { return new DescribeApiVariableRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiVariableResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiVariableResponse} extends {@link TeaModel} * * <p>DescribeApiVariableResponse</p> */ public class DescribeApiVariableResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeApiVariableResponseBody body; private DescribeApiVariableResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeApiVariableResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeApiVariableResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeApiVariableResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeApiVariableResponseBody body); @Override DescribeApiVariableResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeApiVariableResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeApiVariableResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeApiVariableResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeApiVariableResponseBody body) { this.body = body; return this; } @Override public DescribeApiVariableResponse build() { return new DescribeApiVariableResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApiVariableResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApiVariableResponseBody} extends {@link TeaModel} * * <p>DescribeApiVariableResponseBody</p> */ public class DescribeApiVariableResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeApiVariableResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeApiVariableResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DescribeApiVariableResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DescribeApiVariableResponseBody build() { return new DescribeApiVariableResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApisRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApisRequest} extends {@link RequestModel} * * <p>DescribeApisRequest</p> */ public class DescribeApisRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("apiGroupId") @com.aliyun.core.annotation.Validation(required = true) private String apiGroupId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("apiRegionId") @com.aliyun.core.annotation.Validation(required = true) private String apiRegionId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("apiType") @com.aliyun.core.annotation.Validation(required = true) private String apiType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeApisRequest(Builder builder) { super(builder); this.lang = builder.lang; this.apiGroupId = builder.apiGroupId; this.apiRegionId = builder.apiRegionId; this.apiType = builder.apiType; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeApisRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return apiGroupId */ public String getApiGroupId() { return this.apiGroupId; } /** * @return apiRegionId */ public String getApiRegionId() { return this.apiRegionId; } /** * @return apiType */ public String getApiType() { return this.apiType; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeApisRequest, Builder> { private String lang; private String apiGroupId; private String apiRegionId; private String apiType; private String regId; private Builder() { super(); } private Builder(DescribeApisRequest request) { super(request); this.lang = request.lang; this.apiGroupId = request.apiGroupId; this.apiRegionId = request.apiRegionId; this.apiType = request.apiType; this.regId = request.regId; } /** * <p>Set the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>API group ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>3309b0f4b1e243cd8bd9dd029f9c5f0a</p> */ public Builder apiGroupId(String apiGroupId) { this.putQueryParameter("apiGroupId", apiGroupId); this.apiGroupId = apiGroupId; return this; } /** * <p>Region ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou、cn-shanghai</p> */ public Builder apiRegionId(String apiRegionId) { this.putQueryParameter("apiRegionId", apiRegionId); this.apiRegionId = apiRegionId; return this; } /** * <p>API type.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>SELF</p> */ public Builder apiType(String apiType) { this.putQueryParameter("apiType", apiType); this.apiType = apiType; return this; } /** * <p>Region code.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeApisRequest build() { return new DescribeApisRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApisResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApisResponse} extends {@link TeaModel} * * <p>DescribeApisResponse</p> */ public class DescribeApisResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeApisResponseBody body; private DescribeApisResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeApisResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeApisResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeApisResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeApisResponseBody body); @Override DescribeApisResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeApisResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeApisResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeApisResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeApisResponseBody body) { this.body = body; return this; } @Override public DescribeApisResponse build() { return new DescribeApisResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeApisResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeApisResponseBody} extends {@link TeaModel} * * <p>DescribeApisResponseBody</p> */ public class DescribeApisResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeApisResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeApisResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private Boolean resultObject; private Builder() { } private Builder(DescribeApisResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DescribeApisResponseBody build() { return new DescribeApisResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAppKeyPageRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAppKeyPageRequest} extends {@link RequestModel} * * <p>DescribeAppKeyPageRequest</p> */ public class DescribeAppKeyPageRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("currentPage") private String currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") private String pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeAppKeyPageRequest(Builder builder) { super(builder); this.lang = builder.lang; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeAppKeyPageRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeAppKeyPageRequest, Builder> { private String lang; private String currentPage; private String pageSize; private String regId; private Builder() { super(); } private Builder(DescribeAppKeyPageRequest request) { super(request); this.lang = request.lang; this.currentPage = request.currentPage; this.pageSize = request.pageSize; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Current page number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(String currentPage) { this.putQueryParameter("currentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Number of items per page, default value is 10.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(String pageSize) { this.putQueryParameter("pageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>Region code.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeAppKeyPageRequest build() { return new DescribeAppKeyPageRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAppKeyPageResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAppKeyPageResponse} extends {@link TeaModel} * * <p>DescribeAppKeyPageResponse</p> */ public class DescribeAppKeyPageResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAppKeyPageResponseBody body; private DescribeAppKeyPageResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAppKeyPageResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAppKeyPageResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAppKeyPageResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAppKeyPageResponseBody body); @Override DescribeAppKeyPageResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAppKeyPageResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAppKeyPageResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAppKeyPageResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAppKeyPageResponseBody body) { this.body = body; return this; } @Override public DescribeAppKeyPageResponse build() { return new DescribeAppKeyPageResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAppKeyPageResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAppKeyPageResponseBody} extends {@link TeaModel} * * <p>DescribeAppKeyPageResponseBody</p> */ public class DescribeAppKeyPageResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("currentPage") private Integer currentPage; @com.aliyun.core.annotation.NameInMap("pageSize") private Integer pageSize; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; @com.aliyun.core.annotation.NameInMap("totalItem") private Integer totalItem; @com.aliyun.core.annotation.NameInMap("totalPage") private Integer totalPage; private DescribeAppKeyPageResponseBody(Builder builder) { this.requestId = builder.requestId; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.resultObject = builder.resultObject; this.totalItem = builder.totalItem; this.totalPage = builder.totalPage; } public static Builder builder() { return new Builder(); } public static DescribeAppKeyPageResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return resultObject */ public java.util.List<ResultObject> getResultObject() { return this.resultObject; } /** * @return totalItem */ public Integer getTotalItem() { return this.totalItem; } /** * @return totalPage */ public Integer getTotalPage() { return this.totalPage; } public static final class Builder { private String requestId; private Integer currentPage; private Integer pageSize; private java.util.List<ResultObject> resultObject; private Integer totalItem; private Integer totalPage; private Builder() { } private Builder(DescribeAppKeyPageResponseBody model) { this.requestId = model.requestId; this.currentPage = model.currentPage; this.pageSize = model.pageSize; this.resultObject = model.resultObject; this.totalItem = model.totalItem; this.totalPage = model.totalPage; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>E01E1B4A-6747-5329-9046-B6D6B2D91349</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Current page number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>Number of items per page, default value is 10.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>Returned object.</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } /** * <p>Total number of items.</p> * * <strong>example:</strong> * <p>3</p> */ public Builder totalItem(Integer totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } public DescribeAppKeyPageResponseBody build() { return new DescribeAppKeyPageResponseBody(this); } } /** * * {@link DescribeAppKeyPageResponseBody} extends {@link TeaModel} * * <p>DescribeAppKeyPageResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("androidSdkUrl") private String androidSdkUrl; @com.aliyun.core.annotation.NameInMap("androidSdkVersion") private String androidSdkVersion; @com.aliyun.core.annotation.NameInMap("appKey") private String appKey; @com.aliyun.core.annotation.NameInMap("gmtCreate") private Long gmtCreate; @com.aliyun.core.annotation.NameInMap("iosSdkUrl") private String iosSdkUrl; @com.aliyun.core.annotation.NameInMap("iosSdkVersion") private String iosSdkVersion; @com.aliyun.core.annotation.NameInMap("memo") private String memo; @com.aliyun.core.annotation.NameInMap("sdkItems") private String sdkItems; @com.aliyun.core.annotation.NameInMap("used") private String used; private ResultObject(Builder builder) { this.androidSdkUrl = builder.androidSdkUrl; this.androidSdkVersion = builder.androidSdkVersion; this.appKey = builder.appKey; this.gmtCreate = builder.gmtCreate; this.iosSdkUrl = builder.iosSdkUrl; this.iosSdkVersion = builder.iosSdkVersion; this.memo = builder.memo; this.sdkItems = builder.sdkItems; this.used = builder.used; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return androidSdkUrl */ public String getAndroidSdkUrl() { return this.androidSdkUrl; } /** * @return androidSdkVersion */ public String getAndroidSdkVersion() { return this.androidSdkVersion; } /** * @return appKey */ public String getAppKey() { return this.appKey; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return iosSdkUrl */ public String getIosSdkUrl() { return this.iosSdkUrl; } /** * @return iosSdkVersion */ public String getIosSdkVersion() { return this.iosSdkVersion; } /** * @return memo */ public String getMemo() { return this.memo; } /** * @return sdkItems */ public String getSdkItems() { return this.sdkItems; } /** * @return used */ public String getUsed() { return this.used; } public static final class Builder { private String androidSdkUrl; private String androidSdkVersion; private String appKey; private Long gmtCreate; private String iosSdkUrl; private String iosSdkVersion; private String memo; private String sdkItems; private String used; private Builder() { } private Builder(ResultObject model) { this.androidSdkUrl = model.androidSdkUrl; this.androidSdkVersion = model.androidSdkVersion; this.appKey = model.appKey; this.gmtCreate = model.gmtCreate; this.iosSdkUrl = model.iosSdkUrl; this.iosSdkVersion = model.iosSdkVersion; this.memo = model.memo; this.sdkItems = model.sdkItems; this.used = model.used; } /** * <p>Android SDK download URL.</p> * * <strong>example:</strong> * <p><a href="https://xxxxx-oss-xxxxx.xxxxxx.aliyuncs.com/xx/xx/xxx/xxxxxx.csv?Expires=1753433384&OSSAccessKeyId=xxxxxxxxx&Signature=%2F%xxxxxxxxxxxx%3D">https://xxxxx-oss-xxxxx.xxxxxx.aliyuncs.com/xx/xx/xxx/xxxxxx.csv?Expires=1753433384&amp;OSSAccessKeyId=xxxxxxxxx&amp;Signature=%2F%xxxxxxxxxxxx%3D</a></p> */ public Builder androidSdkUrl(String androidSdkUrl) { this.androidSdkUrl = androidSdkUrl; return this; } /** * <p>Android SDK version number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder androidSdkVersion(String androidSdkVersion) { this.androidSdkVersion = androidSdkVersion; return this; } /** * <p>Application appkey.</p> * * <strong>example:</strong> * <p>sh9a71f07fhs556bd767586307e82795</p> */ public Builder appKey(String appKey) { this.appKey = appKey; return this; } /** * <p>Creation time.</p> * * <strong>example:</strong> * <p>1621578648000</p> */ public Builder gmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * <p>iOS SDK download URL.</p> * * <strong>example:</strong> * <p><a href="https://xxxxx-oss-xxxxx.xxxxxx.aliyuncs.com/xx/xx/xxx/xxxxxx.csv?Expires=1753433384&OSSAccessKeyId=xxxxxxxxx&Signature=%2F%xxxxxxxxxxxx%3D">https://xxxxx-oss-xxxxx.xxxxxx.aliyuncs.com/xx/xx/xxx/xxxxxx.csv?Expires=1753433384&amp;OSSAccessKeyId=xxxxxxxxx&amp;Signature=%2F%xxxxxxxxxxxx%3D</a></p> */ public Builder iosSdkUrl(String iosSdkUrl) { this.iosSdkUrl = iosSdkUrl; return this; } /** * <p>iOS SDK version number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder iosSdkVersion(String iosSdkVersion) { this.iosSdkVersion = iosSdkVersion; return this; } /** * <p>Memo.</p> * * <strong>example:</strong> * <p>备注</p> */ public Builder memo(String memo) { this.memo = memo; return this; } /** * <p>Deprecated.</p> * * <strong>example:</strong> * <p>已作废</p> */ public Builder sdkItems(String sdkItems) { this.sdkItems = sdkItems; return this; } /** * <p>Whether this appKey is integrated.</p> * * <strong>example:</strong> * <p>false</p> */ public Builder used(String used) { this.used = used; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuditConfigRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAuditConfigRequest} extends {@link RequestModel} * * <p>DescribeAuditConfigRequest</p> */ public class DescribeAuditConfigRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("auditRelationType") private String auditRelationType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeAuditConfigRequest(Builder builder) { super(builder); this.lang = builder.lang; this.auditRelationType = builder.auditRelationType; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeAuditConfigRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return auditRelationType */ public String getAuditRelationType() { return this.auditRelationType; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeAuditConfigRequest, Builder> { private String lang; private String auditRelationType; private String regId; private Builder() { super(); } private Builder(DescribeAuditConfigRequest request) { super(request); this.lang = request.lang; this.auditRelationType = request.auditRelationType; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Audit type</p> * * <strong>example:</strong> * <p>RULE</p> */ public Builder auditRelationType(String auditRelationType) { this.putQueryParameter("auditRelationType", auditRelationType); this.auditRelationType = auditRelationType; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeAuditConfigRequest build() { return new DescribeAuditConfigRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuditConfigResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAuditConfigResponse} extends {@link TeaModel} * * <p>DescribeAuditConfigResponse</p> */ public class DescribeAuditConfigResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAuditConfigResponseBody body; private DescribeAuditConfigResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAuditConfigResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAuditConfigResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAuditConfigResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAuditConfigResponseBody body); @Override DescribeAuditConfigResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAuditConfigResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAuditConfigResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAuditConfigResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAuditConfigResponseBody body) { this.body = body; return this; } @Override public DescribeAuditConfigResponse build() { return new DescribeAuditConfigResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuditConfigResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAuditConfigResponseBody} extends {@link TeaModel} * * <p>DescribeAuditConfigResponseBody</p> */ public class DescribeAuditConfigResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("code") private String code; @com.aliyun.core.annotation.NameInMap("httpStatusCode") private String httpStatusCode; @com.aliyun.core.annotation.NameInMap("message") private String message; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; @com.aliyun.core.annotation.NameInMap("success") private Boolean success; private DescribeAuditConfigResponseBody(Builder builder) { this.code = builder.code; this.httpStatusCode = builder.httpStatusCode; this.message = builder.message; this.resultObject = builder.resultObject; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static DescribeAuditConfigResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return code */ public String getCode() { return this.code; } /** * @return httpStatusCode */ public String getHttpStatusCode() { return this.httpStatusCode; } /** * @return message */ public String getMessage() { return this.message; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private String httpStatusCode; private String message; private Boolean resultObject; private Boolean success; private Builder() { } private Builder(DescribeAuditConfigResponseBody model) { this.code = model.code; this.httpStatusCode = model.httpStatusCode; this.message = model.message; this.resultObject = model.resultObject; this.success = model.success; } /** * <p>Status code.</p> * * <strong>example:</strong> * <p>200</p> */ public Builder code(String code) { this.code = code; return this; } /** * <p>HTTP status code</p> * * <strong>example:</strong> * <p>200</p> */ public Builder httpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } /** * <p>Error message</p> * * <strong>example:</strong> * <p>The input parameter data is not valid. order_storage_company_num component not found</p> */ public Builder message(String message) { this.message = message; return this; } /** * <p>Returned object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } /** * <p>Indicates whether the request was successful.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder success(Boolean success) { this.success = success; return this; } public DescribeAuditConfigResponseBody build() { return new DescribeAuditConfigResponseBody(this); } } }