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/DescribeServiceCodeNameResponse.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 DescribeServiceCodeNameResponse} extends {@link TeaModel} * * <p>DescribeServiceCodeNameResponse</p> */ public class DescribeServiceCodeNameResponse 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 DescribeServiceCodeNameResponseBody body; private DescribeServiceCodeNameResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeServiceCodeNameResponse 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 DescribeServiceCodeNameResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeServiceCodeNameResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeServiceCodeNameResponseBody body); @Override DescribeServiceCodeNameResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeServiceCodeNameResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeServiceCodeNameResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeServiceCodeNameResponse 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(DescribeServiceCodeNameResponseBody body) { this.body = body; return this; } @Override public DescribeServiceCodeNameResponse build() { return new DescribeServiceCodeNameResponse(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/DescribeServiceCodeNameResponseBody.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 DescribeServiceCodeNameResponseBody} extends {@link TeaModel} * * <p>DescribeServiceCodeNameResponseBody</p> */ public class DescribeServiceCodeNameResponseBody 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 String resultObject; private DescribeServiceCodeNameResponseBody(Builder builder) { this.code = builder.code; this.httpStatusCode = builder.httpStatusCode; this.message = builder.message; this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeServiceCodeNameResponseBody 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 String getResultObject() { return this.resultObject; } public static final class Builder { private String code; private String httpStatusCode; private String message; private String requestId; private String resultObject; private Builder() { } private Builder(DescribeServiceCodeNameResponseBody model) { this.code = model.code; this.httpStatusCode = model.httpStatusCode; this.message = model.message; this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <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>Return message.</p> * * <strong>example:</strong> * <p>success</p> */ public Builder message(String message) { this.message = message; return this; } /** * <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 result.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(String resultObject) { this.resultObject = resultObject; return this; } public DescribeServiceCodeNameResponseBody build() { return new DescribeServiceCodeNameResponseBody(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/DescribeServiceListRequest.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 DescribeServiceListRequest} extends {@link RequestModel} * * <p>DescribeServiceListRequest</p> */ public class DescribeServiceListRequest 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 DescribeServiceListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeServiceListRequest 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<DescribeServiceListRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeServiceListRequest 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> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeServiceListRequest build() { return new DescribeServiceListRequest(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/DescribeServiceListResponse.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 DescribeServiceListResponse} extends {@link TeaModel} * * <p>DescribeServiceListResponse</p> */ public class DescribeServiceListResponse 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 DescribeServiceListResponseBody body; private DescribeServiceListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeServiceListResponse 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 DescribeServiceListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeServiceListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeServiceListResponseBody body); @Override DescribeServiceListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeServiceListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeServiceListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeServiceListResponse 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(DescribeServiceListResponseBody body) { this.body = body; return this; } @Override public DescribeServiceListResponse build() { return new DescribeServiceListResponse(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/DescribeServiceListResponseBody.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 DescribeServiceListResponseBody} extends {@link TeaModel} * * <p>DescribeServiceListResponseBody</p> */ public class DescribeServiceListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeServiceListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeServiceListResponseBody 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(DescribeServiceListResponseBody 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 DescribeServiceListResponseBody build() { return new DescribeServiceListResponseBody(this); } } /** * * {@link DescribeServiceListResponseBody} extends {@link TeaModel} * * <p>DescribeServiceListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("serviceCode") private String serviceCode; @com.aliyun.core.annotation.NameInMap("serviceName") private String serviceName; private ResultObject(Builder builder) { this.serviceCode = builder.serviceCode; this.serviceName = builder.serviceName; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return serviceCode */ public String getServiceCode() { return this.serviceCode; } /** * @return serviceName */ public String getServiceName() { return this.serviceName; } public static final class Builder { private String serviceCode; private String serviceName; private Builder() { } private Builder(ResultObject model) { this.serviceCode = model.serviceCode; this.serviceName = model.serviceName; } /** * <p>Service code</p> * * <strong>example:</strong> * <p>coupon_abuse_detection</p> */ public Builder serviceCode(String serviceCode) { this.serviceCode = serviceCode; return this; } /** * <p>Service name.</p> * * <strong>example:</strong> * <p>coupon_abuse_detection</p> */ public Builder serviceName(String serviceName) { this.serviceName = serviceName; 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/DescribeSimulationPreditInfoRequest.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 DescribeSimulationPreditInfoRequest} extends {@link RequestModel} * * <p>DescribeSimulationPreditInfoRequest</p> */ public class DescribeSimulationPreditInfoRequest 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") @com.aliyun.core.annotation.Validation(required = true) private String eventCode; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("rulesStr") @com.aliyun.core.annotation.Validation(required = true) private String rulesStr; private DescribeSimulationPreditInfoRequest(Builder builder) { super(builder); this.lang = builder.lang; this.eventCode = builder.eventCode; this.regId = builder.regId; this.rulesStr = builder.rulesStr; } public static Builder builder() { return new Builder(); } public static DescribeSimulationPreditInfoRequest 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 regId */ public String getRegId() { return this.regId; } /** * @return rulesStr */ public String getRulesStr() { return this.rulesStr; } public static final class Builder extends Request.Builder<DescribeSimulationPreditInfoRequest, Builder> { private String lang; private String eventCode; private String regId; private String rulesStr; private Builder() { super(); } private Builder(DescribeSimulationPreditInfoRequest request) { super(request); this.lang = request.lang; this.eventCode = request.eventCode; this.regId = request.regId; this.rulesStr = request.rulesStr; } /** * <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> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>de_azywkh7523</p> */ public Builder eventCode(String eventCode) { this.putQueryParameter("eventCode", eventCode); this.eventCode = eventCode; 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 list</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>[&quot;100244&quot;,&quot;100245&quot;]</p> */ public Builder rulesStr(String rulesStr) { this.putQueryParameter("rulesStr", rulesStr); this.rulesStr = rulesStr; return this; } @Override public DescribeSimulationPreditInfoRequest build() { return new DescribeSimulationPreditInfoRequest(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/DescribeSimulationPreditInfoResponse.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 DescribeSimulationPreditInfoResponse} extends {@link TeaModel} * * <p>DescribeSimulationPreditInfoResponse</p> */ public class DescribeSimulationPreditInfoResponse 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 DescribeSimulationPreditInfoResponseBody body; private DescribeSimulationPreditInfoResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSimulationPreditInfoResponse 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 DescribeSimulationPreditInfoResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSimulationPreditInfoResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSimulationPreditInfoResponseBody body); @Override DescribeSimulationPreditInfoResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSimulationPreditInfoResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSimulationPreditInfoResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSimulationPreditInfoResponse 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(DescribeSimulationPreditInfoResponseBody body) { this.body = body; return this; } @Override public DescribeSimulationPreditInfoResponse build() { return new DescribeSimulationPreditInfoResponse(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/DescribeSimulationPreditInfoResponseBody.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 DescribeSimulationPreditInfoResponseBody} extends {@link TeaModel} * * <p>DescribeSimulationPreditInfoResponseBody</p> */ public class DescribeSimulationPreditInfoResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeSimulationPreditInfoResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSimulationPreditInfoResponseBody 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(DescribeSimulationPreditInfoResponseBody 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 DescribeSimulationPreditInfoResponseBody build() { return new DescribeSimulationPreditInfoResponseBody(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/DescribeSimulationTaskCountRequest.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 DescribeSimulationTaskCountRequest} extends {@link RequestModel} * * <p>DescribeSimulationTaskCountRequest</p> */ public class DescribeSimulationTaskCountRequest 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("dataSourceConfig") private String dataSourceConfig; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("dataSourceType") private String dataSourceType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("endTime") @com.aliyun.core.annotation.Validation(required = true) private Long endTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventCode") @com.aliyun.core.annotation.Validation(required = true) private String eventCode; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("filtersStr") private String filtersStr; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("startTime") @com.aliyun.core.annotation.Validation(required = true) private Long startTime; private DescribeSimulationTaskCountRequest(Builder builder) { super(builder); this.lang = builder.lang; this.dataSourceConfig = builder.dataSourceConfig; this.dataSourceType = builder.dataSourceType; this.endTime = builder.endTime; this.eventCode = builder.eventCode; this.filtersStr = builder.filtersStr; this.regId = builder.regId; this.startTime = builder.startTime; } public static Builder builder() { return new Builder(); } public static DescribeSimulationTaskCountRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return dataSourceConfig */ public String getDataSourceConfig() { return this.dataSourceConfig; } /** * @return dataSourceType */ public String getDataSourceType() { return this.dataSourceType; } /** * @return endTime */ public Long getEndTime() { return this.endTime; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return filtersStr */ public String getFiltersStr() { return this.filtersStr; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return startTime */ public Long getStartTime() { return this.startTime; } public static final class Builder extends Request.Builder<DescribeSimulationTaskCountRequest, Builder> { private String lang; private String dataSourceConfig; private String dataSourceType; private Long endTime; private String eventCode; private String filtersStr; private String regId; private Long startTime; private Builder() { super(); } private Builder(DescribeSimulationTaskCountRequest request) { super(request); this.lang = request.lang; this.dataSourceConfig = request.dataSourceConfig; this.dataSourceType = request.dataSourceType; this.endTime = request.endTime; this.eventCode = request.eventCode; this.filtersStr = request.filtersStr; this.regId = request.regId; this.startTime = request.startTime; } /** * <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 source configuration</p> * * <strong>example:</strong> * <p>{}</p> */ public Builder dataSourceConfig(String dataSourceConfig) { this.putQueryParameter("dataSourceConfig", dataSourceConfig); this.dataSourceConfig = dataSourceConfig; return this; } /** * <p>Data source type</p> * * <strong>example:</strong> * <p>SLS</p> */ public Builder dataSourceType(String dataSourceType) { this.putQueryParameter("dataSourceType", dataSourceType); this.dataSourceType = dataSourceType; return this; } /** * <p>Task end time.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1740016411000</p> */ public Builder endTime(Long endTime) { this.putQueryParameter("endTime", endTime); this.endTime = endTime; return this; } /** * <p>Event code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>de_ayfofy4941</p> */ public Builder eventCode(String eventCode) { this.putQueryParameter("eventCode", eventCode); this.eventCode = eventCode; return this; } /** * <p>Filter</p> * * <strong>example:</strong> * <p>{&quot;left&quot;:&quot;score&quot;,&quot;operate&quot;:&quot;bw&quot;,&quot;right&quot;:&quot;222,333&quot;}</p> */ public Builder filtersStr(String filtersStr) { this.putQueryParameter("filtersStr", filtersStr); this.filtersStr = filtersStr; 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>Task start time.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1739496651000</p> */ public Builder startTime(Long startTime) { this.putQueryParameter("startTime", startTime); this.startTime = startTime; return this; } @Override public DescribeSimulationTaskCountRequest build() { return new DescribeSimulationTaskCountRequest(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/DescribeSimulationTaskCountResponse.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 DescribeSimulationTaskCountResponse} extends {@link TeaModel} * * <p>DescribeSimulationTaskCountResponse</p> */ public class DescribeSimulationTaskCountResponse 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 DescribeSimulationTaskCountResponseBody body; private DescribeSimulationTaskCountResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSimulationTaskCountResponse 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 DescribeSimulationTaskCountResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSimulationTaskCountResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSimulationTaskCountResponseBody body); @Override DescribeSimulationTaskCountResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSimulationTaskCountResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSimulationTaskCountResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSimulationTaskCountResponse 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(DescribeSimulationTaskCountResponseBody body) { this.body = body; return this; } @Override public DescribeSimulationTaskCountResponse build() { return new DescribeSimulationTaskCountResponse(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/DescribeSimulationTaskCountResponseBody.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 DescribeSimulationTaskCountResponseBody} extends {@link TeaModel} * * <p>DescribeSimulationTaskCountResponseBody</p> */ public class DescribeSimulationTaskCountResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeSimulationTaskCountResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSimulationTaskCountResponseBody 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(DescribeSimulationTaskCountResponseBody 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 DescribeSimulationTaskCountResponseBody build() { return new DescribeSimulationTaskCountResponseBody(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/DescribeSimulationTaskListRequest.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 DescribeSimulationTaskListRequest} extends {@link RequestModel} * * <p>DescribeSimulationTaskListRequest</p> */ public class DescribeSimulationTaskListRequest 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("id") private String 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("pageSize") private String pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("title") private String title; private DescribeSimulationTaskListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.currentPage = builder.currentPage; this.id = builder.id; this.name = builder.name; this.pageSize = builder.pageSize; this.regId = builder.regId; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static DescribeSimulationTaskListRequest 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 id */ public String getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder extends Request.Builder<DescribeSimulationTaskListRequest, Builder> { private String lang; private String currentPage; private String id; private String name; private String pageSize; private String regId; private String title; private Builder() { super(); } private Builder(DescribeSimulationTaskListRequest request) { super(request); this.lang = request.lang; this.currentPage = request.currentPage; this.id = request.id; this.name = request.name; this.pageSize = request.pageSize; this.regId = request.regId; this.title = request.title; } /** * <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>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>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>Name</p> * * <strong>example:</strong> * <p>SIMULATION</p> */ public Builder name(String name) { this.putQueryParameter("name", name); this.name = name; return this; } /** * <p>Page size, with a default value of 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; } /** * <p>Title.</p> * * <strong>example:</strong> * <p>仿真任务</p> */ public Builder title(String title) { this.putQueryParameter("title", title); this.title = title; return this; } @Override public DescribeSimulationTaskListRequest build() { return new DescribeSimulationTaskListRequest(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/DescribeSimulationTaskListResponse.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 DescribeSimulationTaskListResponse} extends {@link TeaModel} * * <p>DescribeSimulationTaskListResponse</p> */ public class DescribeSimulationTaskListResponse 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 DescribeSimulationTaskListResponseBody body; private DescribeSimulationTaskListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSimulationTaskListResponse 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 DescribeSimulationTaskListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSimulationTaskListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSimulationTaskListResponseBody body); @Override DescribeSimulationTaskListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSimulationTaskListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSimulationTaskListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSimulationTaskListResponse 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(DescribeSimulationTaskListResponseBody body) { this.body = body; return this; } @Override public DescribeSimulationTaskListResponse build() { return new DescribeSimulationTaskListResponse(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/DescribeSimulationTaskListResponseBody.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 DescribeSimulationTaskListResponseBody} extends {@link TeaModel} * * <p>DescribeSimulationTaskListResponseBody</p> */ public class DescribeSimulationTaskListResponseBody 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 Boolean resultObject; @com.aliyun.core.annotation.NameInMap("totalItem") private Integer totalItem; @com.aliyun.core.annotation.NameInMap("totalPage") private Integer totalPage; private DescribeSimulationTaskListResponseBody(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 DescribeSimulationTaskListResponseBody 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 Boolean 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 Boolean resultObject; private Integer totalItem; private Integer totalPage; private Builder() { } private Builder(DescribeSimulationTaskListResponseBody 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>A32FE941-35F2-5378-B37C-4B8FDB16F094</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>Page size, with a default value of 10</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } /** * <p>Total count.</p> * * <strong>example:</strong> * <p>6</p> */ public Builder totalItem(Integer totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total pages</p> * * <strong>example:</strong> * <p>1</p> */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } public DescribeSimulationTaskListResponseBody build() { return new DescribeSimulationTaskListResponseBody(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/DescribeSlsUrlConfigRequest.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 DescribeSlsUrlConfigRequest} extends {@link RequestModel} * * <p>DescribeSlsUrlConfigRequest</p> */ public class DescribeSlsUrlConfigRequest 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 DescribeSlsUrlConfigRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeSlsUrlConfigRequest 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<DescribeSlsUrlConfigRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeSlsUrlConfigRequest 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 DescribeSlsUrlConfigRequest build() { return new DescribeSlsUrlConfigRequest(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/DescribeSlsUrlConfigResponse.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 DescribeSlsUrlConfigResponse} extends {@link TeaModel} * * <p>DescribeSlsUrlConfigResponse</p> */ public class DescribeSlsUrlConfigResponse 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 DescribeSlsUrlConfigResponseBody body; private DescribeSlsUrlConfigResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSlsUrlConfigResponse 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 DescribeSlsUrlConfigResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSlsUrlConfigResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSlsUrlConfigResponseBody body); @Override DescribeSlsUrlConfigResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSlsUrlConfigResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSlsUrlConfigResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSlsUrlConfigResponse 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(DescribeSlsUrlConfigResponseBody body) { this.body = body; return this; } @Override public DescribeSlsUrlConfigResponse build() { return new DescribeSlsUrlConfigResponse(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/DescribeSlsUrlConfigResponseBody.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 DescribeSlsUrlConfigResponseBody} extends {@link TeaModel} * * <p>DescribeSlsUrlConfigResponseBody</p> */ public class DescribeSlsUrlConfigResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private String resultObject; private DescribeSlsUrlConfigResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSlsUrlConfigResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public String getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private String resultObject; private Builder() { } private Builder(DescribeSlsUrlConfigResponseBody 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> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(String resultObject) { this.resultObject = resultObject; return this; } public DescribeSlsUrlConfigResponseBody build() { return new DescribeSlsUrlConfigResponseBody(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/DescribeSupportRuleListRequest.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 DescribeSupportRuleListRequest} extends {@link RequestModel} * * <p>DescribeSupportRuleListRequest</p> */ public class DescribeSupportRuleListRequest 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") @com.aliyun.core.annotation.Validation(required = true) private String eventCode; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeSupportRuleListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.eventCode = builder.eventCode; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeSupportRuleListRequest 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 regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeSupportRuleListRequest, Builder> { private String lang; private String eventCode; private String regId; private Builder() { super(); } private Builder(DescribeSupportRuleListRequest request) { super(request); this.lang = request.lang; this.eventCode = request.eventCode; 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>Event code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>de_ahpayh4121</p> */ public Builder eventCode(String eventCode) { this.putQueryParameter("eventCode", eventCode); this.eventCode = eventCode; 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 DescribeSupportRuleListRequest build() { return new DescribeSupportRuleListRequest(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/DescribeSupportRuleListResponse.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 DescribeSupportRuleListResponse} extends {@link TeaModel} * * <p>DescribeSupportRuleListResponse</p> */ public class DescribeSupportRuleListResponse 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 DescribeSupportRuleListResponseBody body; private DescribeSupportRuleListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSupportRuleListResponse 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 DescribeSupportRuleListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSupportRuleListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSupportRuleListResponseBody body); @Override DescribeSupportRuleListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSupportRuleListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSupportRuleListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSupportRuleListResponse 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(DescribeSupportRuleListResponseBody body) { this.body = body; return this; } @Override public DescribeSupportRuleListResponse build() { return new DescribeSupportRuleListResponse(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/DescribeSupportRuleListResponseBody.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 DescribeSupportRuleListResponseBody} extends {@link TeaModel} * * <p>DescribeSupportRuleListResponseBody</p> */ public class DescribeSupportRuleListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeSupportRuleListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSupportRuleListResponseBody 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(DescribeSupportRuleListResponseBody 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 DescribeSupportRuleListResponseBody build() { return new DescribeSupportRuleListResponseBody(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/DescribeTagListRequest.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 DescribeTagListRequest} extends {@link RequestModel} * * <p>DescribeTagListRequest</p> */ public class DescribeTagListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Id") private String id; @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 DescribeTagListRequest(Builder builder) { super(builder); this.id = builder.id; this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeTagListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return id */ public String getId() { return this.id; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeTagListRequest, Builder> { private String id; private String lang; private String regId; private Builder() { super(); } private Builder(DescribeTagListRequest request) { super(request); this.id = request.id; this.lang = request.lang; this.regId = request.regId; } /** * <p>Primary key ID</p> * * <strong>example:</strong> * <p>433102</p> */ public Builder id(String id) { this.putQueryParameter("Id", id); this.id = id; 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>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 DescribeTagListRequest build() { return new DescribeTagListRequest(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/DescribeTagListResponse.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 DescribeTagListResponse} extends {@link TeaModel} * * <p>DescribeTagListResponse</p> */ public class DescribeTagListResponse 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 DescribeTagListResponseBody body; private DescribeTagListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeTagListResponse 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 DescribeTagListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeTagListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeTagListResponseBody body); @Override DescribeTagListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeTagListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeTagListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeTagListResponse 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(DescribeTagListResponseBody body) { this.body = body; return this; } @Override public DescribeTagListResponse build() { return new DescribeTagListResponse(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/DescribeTagListResponseBody.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 DescribeTagListResponseBody} extends {@link TeaModel} * * <p>DescribeTagListResponseBody</p> */ public class DescribeTagListResponseBody 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 String resultObject; private DescribeTagListResponseBody(Builder builder) { this.code = builder.code; this.httpStatusCode = builder.httpStatusCode; this.message = builder.message; this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeTagListResponseBody 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 String getResultObject() { return this.resultObject; } public static final class Builder { private String code; private String httpStatusCode; private String message; private String requestId; private String resultObject; private Builder() { } private Builder(DescribeTagListResponseBody model) { this.code = model.code; this.httpStatusCode = model.httpStatusCode; this.message = model.message; this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <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>success</p> */ public Builder message(String message) { this.message = message; return this; } /** * <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>Result object.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(String resultObject) { this.resultObject = resultObject; return this; } public DescribeTagListResponseBody build() { return new DescribeTagListResponseBody(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/DescribeTagsBarChartRequest.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 DescribeTagsBarChartRequest} extends {@link RequestModel} * * <p>DescribeTagsBarChartRequest</p> */ public class DescribeTagsBarChartRequest 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("beginTime") @com.aliyun.core.annotation.Validation(required = true) private Long beginTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("endTime") @com.aliyun.core.annotation.Validation(required = true) private Long endTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventCodes") 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("result") private String result; private DescribeTagsBarChartRequest(Builder builder) { super(builder); this.lang = builder.lang; this.beginTime = builder.beginTime; this.endTime = builder.endTime; this.eventCodes = builder.eventCodes; this.regId = builder.regId; this.result = builder.result; } public static Builder builder() { return new Builder(); } public static DescribeTagsBarChartRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return beginTime */ public Long getBeginTime() { return this.beginTime; } /** * @return endTime */ public Long getEndTime() { return this.endTime; } /** * @return eventCodes */ public String getEventCodes() { return this.eventCodes; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return result */ public String getResult() { return this.result; } public static final class Builder extends Request.Builder<DescribeTagsBarChartRequest, Builder> { private String lang; private Long beginTime; private Long endTime; private String eventCodes; private String regId; private String result; private Builder() { super(); } private Builder(DescribeTagsBarChartRequest request) { super(request); this.lang = request.lang; this.beginTime = request.beginTime; this.endTime = request.endTime; this.eventCodes = request.eventCodes; this.regId = request.regId; this.result = request.result; } /** * <p>Sets the language type for the request and response 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>Start time, accurate to milliseconds (ms).</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1751249559000</p> */ public Builder beginTime(Long beginTime) { this.putQueryParameter("beginTime", beginTime); this.beginTime = beginTime; return this; } /** * <p>End time, accurate to milliseconds (ms).</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1751595912000</p> */ public Builder endTime(Long endTime) { this.putQueryParameter("endTime", endTime); this.endTime = endTime; return this; } /** * <p>Event code.</p> * * <strong>example:</strong> * <p>de_afghcf6411</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>Policy execution result</p> * * <strong>example:</strong> * <p>PASS</p> */ public Builder result(String result) { this.putQueryParameter("result", result); this.result = result; return this; } @Override public DescribeTagsBarChartRequest build() { return new DescribeTagsBarChartRequest(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/DescribeTagsBarChartResponse.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 DescribeTagsBarChartResponse} extends {@link TeaModel} * * <p>DescribeTagsBarChartResponse</p> */ public class DescribeTagsBarChartResponse 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 DescribeTagsBarChartResponseBody body; private DescribeTagsBarChartResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeTagsBarChartResponse 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 DescribeTagsBarChartResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeTagsBarChartResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeTagsBarChartResponseBody body); @Override DescribeTagsBarChartResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeTagsBarChartResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeTagsBarChartResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeTagsBarChartResponse 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(DescribeTagsBarChartResponseBody body) { this.body = body; return this; } @Override public DescribeTagsBarChartResponse build() { return new DescribeTagsBarChartResponse(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/DescribeTagsBarChartResponseBody.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 DescribeTagsBarChartResponseBody} extends {@link TeaModel} * * <p>DescribeTagsBarChartResponseBody</p> */ public class DescribeTagsBarChartResponseBody 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 ResultObject resultObject; @com.aliyun.core.annotation.NameInMap("success") private Boolean success; private DescribeTagsBarChartResponseBody(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 DescribeTagsBarChartResponseBody 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 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 ResultObject resultObject; private Boolean success; private Builder() { } private Builder(DescribeTagsBarChartResponseBody 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> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } /** * <p>Whether the request was successful.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder success(Boolean success) { this.success = success; return this; } public DescribeTagsBarChartResponseBody build() { return new DescribeTagsBarChartResponseBody(this); } } /** * * {@link DescribeTagsBarChartResponseBody} extends {@link TeaModel} * * <p>DescribeTagsBarChartResponseBody</p> */ public static class Data extends TeaModel { @com.aliyun.core.annotation.NameInMap("num") private Long num; @com.aliyun.core.annotation.NameInMap("scale") private String scale; private Data(Builder builder) { this.num = builder.num; this.scale = builder.scale; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return num */ public Long getNum() { return this.num; } /** * @return scale */ public String getScale() { return this.scale; } public static final class Builder { private Long num; private String scale; private Builder() { } private Builder(Data model) { this.num = model.num; this.scale = model.scale; } /** * <p>Number.</p> * * <strong>example:</strong> * <p>200</p> */ public Builder num(Long num) { this.num = num; return this; } /** * <p>Scale</p> * * <strong>example:</strong> * <p>10%</p> */ public Builder scale(String scale) { this.scale = scale; return this; } public Data build() { return new Data(this); } } } /** * * {@link DescribeTagsBarChartResponseBody} extends {@link TeaModel} * * <p>DescribeTagsBarChartResponseBody</p> */ public static class Series extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<Data> data; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("stack") private String stack; private Series(Builder builder) { this.data = builder.data; this.name = builder.name; this.stack = builder.stack; } public static Builder builder() { return new Builder(); } public static Series create() { return builder().build(); } /** * @return data */ public java.util.List<Data> getData() { return this.data; } /** * @return name */ public String getName() { return this.name; } /** * @return stack */ public String getStack() { return this.stack; } public static final class Builder { private java.util.List<Data> data; private String name; private String stack; private Builder() { } private Builder(Series model) { this.data = model.data; this.name = model.name; this.stack = model.stack; } /** * <p>Chart data list</p> */ public Builder data(java.util.List<Data> data) { this.data = data; return this; } /** * <p>Series name.</p> * * <strong>example:</strong> * <p>tag</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Chart field, same as name</p> * * <strong>example:</strong> * <p>tag</p> */ public Builder stack(String stack) { this.stack = stack; return this; } public Series build() { return new Series(this); } } } /** * * {@link DescribeTagsBarChartResponseBody} extends {@link TeaModel} * * <p>DescribeTagsBarChartResponseBody</p> */ public static class Xaxis extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<String> data; private Xaxis(Builder builder) { this.data = builder.data; } public static Builder builder() { return new Builder(); } public static Xaxis create() { return builder().build(); } /** * @return data */ public java.util.List<String> getData() { return this.data; } public static final class Builder { private java.util.List<String> data; private Builder() { } private Builder(Xaxis model) { this.data = model.data; } /** * <p>xaxis data items</p> */ public Builder data(java.util.List<String> data) { this.data = data; return this; } public Xaxis build() { return new Xaxis(this); } } } /** * * {@link DescribeTagsBarChartResponseBody} extends {@link TeaModel} * * <p>DescribeTagsBarChartResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("series") private java.util.List<Series> series; @com.aliyun.core.annotation.NameInMap("xaxis") private Xaxis xaxis; private ResultObject(Builder builder) { this.series = builder.series; this.xaxis = builder.xaxis; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return series */ public java.util.List<Series> getSeries() { return this.series; } /** * @return xaxis */ public Xaxis getXaxis() { return this.xaxis; } public static final class Builder { private java.util.List<Series> series; private Xaxis xaxis; private Builder() { } private Builder(ResultObject model) { this.series = model.series; this.xaxis = model.xaxis; } /** * <p>Data list</p> */ public Builder series(java.util.List<Series> series) { this.series = series; return this; } /** * <p>xaxis interface configuration.</p> */ public Builder xaxis(Xaxis xaxis) { this.xaxis = xaxis; 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/DescribeTagsFluctuationRequest.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 DescribeTagsFluctuationRequest} extends {@link RequestModel} * * <p>DescribeTagsFluctuationRequest</p> */ public class DescribeTagsFluctuationRequest 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") private String eventCodes; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeTagsFluctuationRequest(Builder builder) { super(builder); this.lang = builder.lang; this.eventCodes = builder.eventCodes; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeTagsFluctuationRequest 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; } public static final class Builder extends Request.Builder<DescribeTagsFluctuationRequest, Builder> { private String lang; private String eventCodes; private String regId; private Builder() { super(); } private Builder(DescribeTagsFluctuationRequest request) { super(request); this.lang = request.lang; this.eventCodes = request.eventCodes; 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>Event code.</p> * * <strong>example:</strong> * <p>de_afghcf6411</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; } @Override public DescribeTagsFluctuationRequest build() { return new DescribeTagsFluctuationRequest(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/DescribeTagsFluctuationResponse.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 DescribeTagsFluctuationResponse} extends {@link TeaModel} * * <p>DescribeTagsFluctuationResponse</p> */ public class DescribeTagsFluctuationResponse 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 DescribeTagsFluctuationResponseBody body; private DescribeTagsFluctuationResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeTagsFluctuationResponse 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 DescribeTagsFluctuationResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeTagsFluctuationResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeTagsFluctuationResponseBody body); @Override DescribeTagsFluctuationResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeTagsFluctuationResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeTagsFluctuationResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeTagsFluctuationResponse 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(DescribeTagsFluctuationResponseBody body) { this.body = body; return this; } @Override public DescribeTagsFluctuationResponse build() { return new DescribeTagsFluctuationResponse(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/DescribeTagsFluctuationResponseBody.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 DescribeTagsFluctuationResponseBody} extends {@link TeaModel} * * <p>DescribeTagsFluctuationResponseBody</p> */ public class DescribeTagsFluctuationResponseBody 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 DescribeTagsFluctuationResponseBody(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 DescribeTagsFluctuationResponseBody 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(DescribeTagsFluctuationResponseBody 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> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } /** * <p>Indicates whether the call was successful</p> * * <strong>example:</strong> * <p>true</p> */ public Builder success(Boolean success) { this.success = success; return this; } public DescribeTagsFluctuationResponseBody build() { return new DescribeTagsFluctuationResponseBody(this); } } /** * * {@link DescribeTagsFluctuationResponseBody} extends {@link TeaModel} * * <p>DescribeTagsFluctuationResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("tableName") private String tableName; @com.aliyun.core.annotation.NameInMap("todayNum") private Long todayNum; @com.aliyun.core.annotation.NameInMap("withinSevenDayNum") private String withinSevenDayNum; @com.aliyun.core.annotation.NameInMap("withinThirtyDayNum") private String withinThirtyDayNum; @com.aliyun.core.annotation.NameInMap("withinThreeDayNum") private String withinThreeDayNum; @com.aliyun.core.annotation.NameInMap("yesterdayNum") private Long yesterdayNum; private ResultObject(Builder builder) { this.tableName = builder.tableName; this.todayNum = builder.todayNum; this.withinSevenDayNum = builder.withinSevenDayNum; this.withinThirtyDayNum = builder.withinThirtyDayNum; this.withinThreeDayNum = builder.withinThreeDayNum; this.yesterdayNum = builder.yesterdayNum; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return tableName */ public String getTableName() { return this.tableName; } /** * @return todayNum */ public Long getTodayNum() { return this.todayNum; } /** * @return withinSevenDayNum */ public String getWithinSevenDayNum() { return this.withinSevenDayNum; } /** * @return withinThirtyDayNum */ public String getWithinThirtyDayNum() { return this.withinThirtyDayNum; } /** * @return withinThreeDayNum */ public String getWithinThreeDayNum() { return this.withinThreeDayNum; } /** * @return yesterdayNum */ public Long getYesterdayNum() { return this.yesterdayNum; } public static final class Builder { private String tableName; private Long todayNum; private String withinSevenDayNum; private String withinThirtyDayNum; private String withinThreeDayNum; private Long yesterdayNum; private Builder() { } private Builder(ResultObject model) { this.tableName = model.tableName; this.todayNum = model.todayNum; this.withinSevenDayNum = model.withinSevenDayNum; this.withinThirtyDayNum = model.withinThirtyDayNum; this.withinThreeDayNum = model.withinThreeDayNum; this.yesterdayNum = model.yesterdayNum; } /** * <p>Tag name</p> * * <strong>example:</strong> * <p>accountId</p> */ public Builder tableName(String tableName) { this.tableName = tableName; return this; } /** * <p>Data for today</p> * * <strong>example:</strong> * <p>100</p> */ public Builder todayNum(Long todayNum) { this.todayNum = todayNum; return this; } /** * <p>Data for the last seven days</p> * * <strong>example:</strong> * <p>600</p> */ public Builder withinSevenDayNum(String withinSevenDayNum) { this.withinSevenDayNum = withinSevenDayNum; return this; } /** * <p>Data for the last thirty days</p> * * <strong>example:</strong> * <p>1200</p> */ public Builder withinThirtyDayNum(String withinThirtyDayNum) { this.withinThirtyDayNum = withinThirtyDayNum; return this; } /** * <p>Data for the last three days</p> * * <strong>example:</strong> * <p>300</p> */ public Builder withinThreeDayNum(String withinThreeDayNum) { this.withinThreeDayNum = withinThreeDayNum; return this; } /** * <p>Data for yesterday</p> * * <strong>example:</strong> * <p>200</p> */ public Builder yesterdayNum(Long yesterdayNum) { this.yesterdayNum = yesterdayNum; 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/DescribeTagsListRequest.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 DescribeTagsListRequest} extends {@link RequestModel} * * <p>DescribeTagsListRequest</p> */ public class DescribeTagsListRequest 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 DescribeTagsListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeTagsListRequest 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<DescribeTagsListRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeTagsListRequest 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 DescribeTagsListRequest build() { return new DescribeTagsListRequest(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/DescribeTagsListResponse.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 DescribeTagsListResponse} extends {@link TeaModel} * * <p>DescribeTagsListResponse</p> */ public class DescribeTagsListResponse 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 DescribeTagsListResponseBody body; private DescribeTagsListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeTagsListResponse 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 DescribeTagsListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeTagsListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeTagsListResponseBody body); @Override DescribeTagsListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeTagsListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeTagsListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeTagsListResponse 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(DescribeTagsListResponseBody body) { this.body = body; return this; } @Override public DescribeTagsListResponse build() { return new DescribeTagsListResponse(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/DescribeTagsListResponseBody.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 DescribeTagsListResponseBody} extends {@link TeaModel} * * <p>DescribeTagsListResponseBody</p> */ public class DescribeTagsListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeTagsListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeTagsListResponseBody 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(DescribeTagsListResponseBody 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 DescribeTagsListResponseBody build() { return new DescribeTagsListResponseBody(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/DescribeTagsNumLineChartRequest.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 DescribeTagsNumLineChartRequest} extends {@link RequestModel} * * <p>DescribeTagsNumLineChartRequest</p> */ public class DescribeTagsNumLineChartRequest 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("beginTime") @com.aliyun.core.annotation.Validation(required = true) private String beginTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("byPassEventCodes") private String byPassEventCodes; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("endTime") @com.aliyun.core.annotation.Validation(required = true) private String endTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("mainEventCodes") private String mainEventCodes; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("shuntEventCodes") private String shuntEventCodes; private DescribeTagsNumLineChartRequest(Builder builder) { super(builder); this.lang = builder.lang; this.beginTime = builder.beginTime; this.byPassEventCodes = builder.byPassEventCodes; this.endTime = builder.endTime; this.mainEventCodes = builder.mainEventCodes; this.regId = builder.regId; this.shuntEventCodes = builder.shuntEventCodes; } public static Builder builder() { return new Builder(); } public static DescribeTagsNumLineChartRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return beginTime */ public String getBeginTime() { return this.beginTime; } /** * @return byPassEventCodes */ public String getByPassEventCodes() { return this.byPassEventCodes; } /** * @return endTime */ public String getEndTime() { return this.endTime; } /** * @return mainEventCodes */ public String getMainEventCodes() { return this.mainEventCodes; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return shuntEventCodes */ public String getShuntEventCodes() { return this.shuntEventCodes; } public static final class Builder extends Request.Builder<DescribeTagsNumLineChartRequest, Builder> { private String lang; private String beginTime; private String byPassEventCodes; private String endTime; private String mainEventCodes; private String regId; private String shuntEventCodes; private Builder() { super(); } private Builder(DescribeTagsNumLineChartRequest request) { super(request); this.lang = request.lang; this.beginTime = request.beginTime; this.byPassEventCodes = request.byPassEventCodes; this.endTime = request.endTime; this.mainEventCodes = request.mainEventCodes; this.regId = request.regId; this.shuntEventCodes = request.shuntEventCodes; } /** * <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>Start time, accurate to milliseconds (ms).</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1751249559000</p> */ public Builder beginTime(String beginTime) { this.putQueryParameter("beginTime", beginTime); this.beginTime = beginTime; return this; } /** * <p>Bypass event code</p> * * <strong>example:</strong> * <p>de_amnhke2482</p> */ public Builder byPassEventCodes(String byPassEventCodes) { this.putQueryParameter("byPassEventCodes", byPassEventCodes); this.byPassEventCodes = byPassEventCodes; return this; } /** * <p>End time, accurate to milliseconds (ms).</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1749002991000</p> */ public Builder endTime(String endTime) { this.putQueryParameter("endTime", endTime); this.endTime = endTime; return this; } /** * <p>Main event code</p> * * <strong>example:</strong> * <p>de_amnhke2482</p> */ public Builder mainEventCodes(String mainEventCodes) { this.putQueryParameter("mainEventCodes", mainEventCodes); this.mainEventCodes = mainEventCodes; 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>Shunt event code</p> * * <strong>example:</strong> * <p>de_amnhke2488</p> */ public Builder shuntEventCodes(String shuntEventCodes) { this.putQueryParameter("shuntEventCodes", shuntEventCodes); this.shuntEventCodes = shuntEventCodes; return this; } @Override public DescribeTagsNumLineChartRequest build() { return new DescribeTagsNumLineChartRequest(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/DescribeTagsNumLineChartResponse.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 DescribeTagsNumLineChartResponse} extends {@link TeaModel} * * <p>DescribeTagsNumLineChartResponse</p> */ public class DescribeTagsNumLineChartResponse 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 DescribeTagsNumLineChartResponseBody body; private DescribeTagsNumLineChartResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeTagsNumLineChartResponse 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 DescribeTagsNumLineChartResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeTagsNumLineChartResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeTagsNumLineChartResponseBody body); @Override DescribeTagsNumLineChartResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeTagsNumLineChartResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeTagsNumLineChartResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeTagsNumLineChartResponse 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(DescribeTagsNumLineChartResponseBody body) { this.body = body; return this; } @Override public DescribeTagsNumLineChartResponse build() { return new DescribeTagsNumLineChartResponse(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/DescribeTagsNumLineChartResponseBody.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 DescribeTagsNumLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeTagsNumLineChartResponseBody</p> */ public class DescribeTagsNumLineChartResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeTagsNumLineChartResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeTagsNumLineChartResponseBody 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(DescribeTagsNumLineChartResponseBody 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 DescribeTagsNumLineChartResponseBody build() { return new DescribeTagsNumLineChartResponseBody(this); } } /** * * {@link DescribeTagsNumLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeTagsNumLineChartResponseBody</p> */ public static class Series extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<String> data; @com.aliyun.core.annotation.NameInMap("name") private String name; private Series(Builder builder) { this.data = builder.data; this.name = builder.name; } public static Builder builder() { return new Builder(); } public static Series create() { return builder().build(); } /** * @return data */ public java.util.List<String> getData() { return this.data; } /** * @return name */ public String getName() { return this.name; } public static final class Builder { private java.util.List<String> data; private String name; private Builder() { } private Builder(Series model) { this.data = model.data; this.name = model.name; } /** * <p>Chart data list</p> */ public Builder data(java.util.List<String> data) { this.data = data; return this; } /** * <p>Series name.</p> * * <strong>example:</strong> * <p>rn101</p> */ public Builder name(String name) { this.name = name; return this; } public Series build() { return new Series(this); } } } /** * * {@link DescribeTagsNumLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeTagsNumLineChartResponseBody</p> */ public static class Xaxis extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<String> data; private Xaxis(Builder builder) { this.data = builder.data; } public static Builder builder() { return new Builder(); } public static Xaxis create() { return builder().build(); } /** * @return data */ public java.util.List<String> getData() { return this.data; } public static final class Builder { private java.util.List<String> data; private Builder() { } private Builder(Xaxis model) { this.data = model.data; } /** * <p>Chart data list</p> */ public Builder data(java.util.List<String> data) { this.data = data; return this; } public Xaxis build() { return new Xaxis(this); } } } /** * * {@link DescribeTagsNumLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeTagsNumLineChartResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("series") private java.util.List<Series> series; @com.aliyun.core.annotation.NameInMap("xaxis") private Xaxis xaxis; private ResultObject(Builder builder) { this.series = builder.series; this.xaxis = builder.xaxis; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return series */ public java.util.List<Series> getSeries() { return this.series; } /** * @return xaxis */ public Xaxis getXaxis() { return this.xaxis; } public static final class Builder { private java.util.List<Series> series; private Xaxis xaxis; private Builder() { } private Builder(ResultObject model) { this.series = model.series; this.xaxis = model.xaxis; } /** * <p>Data list</p> */ public Builder series(java.util.List<Series> series) { this.series = series; return this; } /** * <p>xaxis node.</p> */ public Builder xaxis(Xaxis xaxis) { this.xaxis = xaxis; 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/DescribeTagsRatioLineChartRequest.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 DescribeTagsRatioLineChartRequest} extends {@link RequestModel} * * <p>DescribeTagsRatioLineChartRequest</p> */ public class DescribeTagsRatioLineChartRequest 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("beginTime") @com.aliyun.core.annotation.Validation(required = true) private Long beginTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("byPassEventCodes") private String byPassEventCodes; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("endTime") @com.aliyun.core.annotation.Validation(required = true) private Long endTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("mainEventCodes") private String mainEventCodes; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("shuntEventCodes") private String shuntEventCodes; private DescribeTagsRatioLineChartRequest(Builder builder) { super(builder); this.lang = builder.lang; this.beginTime = builder.beginTime; this.byPassEventCodes = builder.byPassEventCodes; this.endTime = builder.endTime; this.mainEventCodes = builder.mainEventCodes; this.regId = builder.regId; this.shuntEventCodes = builder.shuntEventCodes; } public static Builder builder() { return new Builder(); } public static DescribeTagsRatioLineChartRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return beginTime */ public Long getBeginTime() { return this.beginTime; } /** * @return byPassEventCodes */ public String getByPassEventCodes() { return this.byPassEventCodes; } /** * @return endTime */ public Long getEndTime() { return this.endTime; } /** * @return mainEventCodes */ public String getMainEventCodes() { return this.mainEventCodes; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return shuntEventCodes */ public String getShuntEventCodes() { return this.shuntEventCodes; } public static final class Builder extends Request.Builder<DescribeTagsRatioLineChartRequest, Builder> { private String lang; private Long beginTime; private String byPassEventCodes; private Long endTime; private String mainEventCodes; private String regId; private String shuntEventCodes; private Builder() { super(); } private Builder(DescribeTagsRatioLineChartRequest request) { super(request); this.lang = request.lang; this.beginTime = request.beginTime; this.byPassEventCodes = request.byPassEventCodes; this.endTime = request.endTime; this.mainEventCodes = request.mainEventCodes; this.regId = request.regId; this.shuntEventCodes = request.shuntEventCodes; } /** * <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>Start time, accurate to milliseconds (ms).</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1751249559000</p> */ public Builder beginTime(Long beginTime) { this.putQueryParameter("beginTime", beginTime); this.beginTime = beginTime; return this; } /** * <p>Bypass event code</p> * * <strong>example:</strong> * <p>de_amnhke2482</p> */ public Builder byPassEventCodes(String byPassEventCodes) { this.putQueryParameter("byPassEventCodes", byPassEventCodes); this.byPassEventCodes = byPassEventCodes; return this; } /** * <p>End time, accurate to milliseconds (ms).</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1751595912000</p> */ public Builder endTime(Long endTime) { this.putQueryParameter("endTime", endTime); this.endTime = endTime; return this; } /** * <p>Main event code</p> * * <strong>example:</strong> * <p>de_amnhke2482</p> */ public Builder mainEventCodes(String mainEventCodes) { this.putQueryParameter("mainEventCodes", mainEventCodes); this.mainEventCodes = mainEventCodes; 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; } /** * <p>Shunt event code</p> * * <strong>example:</strong> * <p>de_amnhke2488</p> */ public Builder shuntEventCodes(String shuntEventCodes) { this.putQueryParameter("shuntEventCodes", shuntEventCodes); this.shuntEventCodes = shuntEventCodes; return this; } @Override public DescribeTagsRatioLineChartRequest build() { return new DescribeTagsRatioLineChartRequest(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/DescribeTagsRatioLineChartResponse.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 DescribeTagsRatioLineChartResponse} extends {@link TeaModel} * * <p>DescribeTagsRatioLineChartResponse</p> */ public class DescribeTagsRatioLineChartResponse 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 DescribeTagsRatioLineChartResponseBody body; private DescribeTagsRatioLineChartResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeTagsRatioLineChartResponse 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 DescribeTagsRatioLineChartResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeTagsRatioLineChartResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeTagsRatioLineChartResponseBody body); @Override DescribeTagsRatioLineChartResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeTagsRatioLineChartResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeTagsRatioLineChartResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeTagsRatioLineChartResponse 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(DescribeTagsRatioLineChartResponseBody body) { this.body = body; return this; } @Override public DescribeTagsRatioLineChartResponse build() { return new DescribeTagsRatioLineChartResponse(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/DescribeTagsRatioLineChartResponseBody.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 DescribeTagsRatioLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeTagsRatioLineChartResponseBody</p> */ public class DescribeTagsRatioLineChartResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeTagsRatioLineChartResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeTagsRatioLineChartResponseBody 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(DescribeTagsRatioLineChartResponseBody 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(ResultObject resultObject) { this.resultObject = resultObject; return this; } public DescribeTagsRatioLineChartResponseBody build() { return new DescribeTagsRatioLineChartResponseBody(this); } } /** * * {@link DescribeTagsRatioLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeTagsRatioLineChartResponseBody</p> */ public static class Series extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<String> data; @com.aliyun.core.annotation.NameInMap("name") private String name; private Series(Builder builder) { this.data = builder.data; this.name = builder.name; } public static Builder builder() { return new Builder(); } public static Series create() { return builder().build(); } /** * @return data */ public java.util.List<String> getData() { return this.data; } /** * @return name */ public String getName() { return this.name; } public static final class Builder { private java.util.List<String> data; private String name; private Builder() { } private Builder(Series model) { this.data = model.data; this.name = model.name; } /** * <p>Result data.</p> */ public Builder data(java.util.List<String> data) { this.data = data; return this; } /** * <p>Series name.</p> * * <strong>example:</strong> * <p>rn101</p> */ public Builder name(String name) { this.name = name; return this; } public Series build() { return new Series(this); } } } /** * * {@link DescribeTagsRatioLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeTagsRatioLineChartResponseBody</p> */ public static class Xaxis extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<String> data; private Xaxis(Builder builder) { this.data = builder.data; } public static Builder builder() { return new Builder(); } public static Xaxis create() { return builder().build(); } /** * @return data */ public java.util.List<String> getData() { return this.data; } public static final class Builder { private java.util.List<String> data; private Builder() { } private Builder(Xaxis model) { this.data = model.data; } /** * <p>X-axis data</p> */ public Builder data(java.util.List<String> data) { this.data = data; return this; } public Xaxis build() { return new Xaxis(this); } } } /** * * {@link DescribeTagsRatioLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeTagsRatioLineChartResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("series") private java.util.List<Series> series; @com.aliyun.core.annotation.NameInMap("xaxis") private Xaxis xaxis; private ResultObject(Builder builder) { this.series = builder.series; this.xaxis = builder.xaxis; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return series */ public java.util.List<Series> getSeries() { return this.series; } /** * @return xaxis */ public Xaxis getXaxis() { return this.xaxis; } public static final class Builder { private java.util.List<Series> series; private Xaxis xaxis; private Builder() { } private Builder(ResultObject model) { this.series = model.series; this.xaxis = model.xaxis; } /** * <p>Data list</p> */ public Builder series(java.util.List<Series> series) { this.series = series; return this; } /** * <p>xaxis node.</p> */ public Builder xaxis(Xaxis xaxis) { this.xaxis = xaxis; 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/DescribeTagsTrendRequest.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 DescribeTagsTrendRequest} extends {@link RequestModel} * * <p>DescribeTagsTrendRequest</p> */ public class DescribeTagsTrendRequest 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("beginTime") private Long beginTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("endTime") private Long endTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventCodes") 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("result") private String result; private DescribeTagsTrendRequest(Builder builder) { super(builder); this.lang = builder.lang; this.beginTime = builder.beginTime; this.endTime = builder.endTime; this.eventCodes = builder.eventCodes; this.regId = builder.regId; this.result = builder.result; } public static Builder builder() { return new Builder(); } public static DescribeTagsTrendRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return beginTime */ public Long getBeginTime() { return this.beginTime; } /** * @return endTime */ public Long getEndTime() { return this.endTime; } /** * @return eventCodes */ public String getEventCodes() { return this.eventCodes; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return result */ public String getResult() { return this.result; } public static final class Builder extends Request.Builder<DescribeTagsTrendRequest, Builder> { private String lang; private Long beginTime; private Long endTime; private String eventCodes; private String regId; private String result; private Builder() { super(); } private Builder(DescribeTagsTrendRequest request) { super(request); this.lang = request.lang; this.beginTime = request.beginTime; this.endTime = request.endTime; this.eventCodes = request.eventCodes; this.regId = request.regId; this.result = request.result; } /** * <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>Start time, accurate to milliseconds (ms).</p> * * <strong>example:</strong> * <p>1751249559000</p> */ public Builder beginTime(Long beginTime) { this.putQueryParameter("beginTime", beginTime); this.beginTime = beginTime; return this; } /** * <p>End time, accurate to milliseconds (ms).</p> * * <strong>example:</strong> * <p>1740298093000</p> */ public Builder endTime(Long endTime) { this.putQueryParameter("endTime", endTime); this.endTime = endTime; return this; } /** * <p>Event code.</p> * * <strong>example:</strong> * <p>de_afghcf6411</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>Policy execution result</p> * * <strong>example:</strong> * <p>PASS</p> */ public Builder result(String result) { this.putQueryParameter("result", result); this.result = result; return this; } @Override public DescribeTagsTrendRequest build() { return new DescribeTagsTrendRequest(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/DescribeTagsTrendResponse.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 DescribeTagsTrendResponse} extends {@link TeaModel} * * <p>DescribeTagsTrendResponse</p> */ public class DescribeTagsTrendResponse 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 DescribeTagsTrendResponseBody body; private DescribeTagsTrendResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeTagsTrendResponse 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 DescribeTagsTrendResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeTagsTrendResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeTagsTrendResponseBody body); @Override DescribeTagsTrendResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeTagsTrendResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeTagsTrendResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeTagsTrendResponse 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(DescribeTagsTrendResponseBody body) { this.body = body; return this; } @Override public DescribeTagsTrendResponse build() { return new DescribeTagsTrendResponse(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/DescribeTagsTrendResponseBody.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 DescribeTagsTrendResponseBody} extends {@link TeaModel} * * <p>DescribeTagsTrendResponseBody</p> */ public class DescribeTagsTrendResponseBody 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 ResultObject resultObject; @com.aliyun.core.annotation.NameInMap("success") private Boolean success; private DescribeTagsTrendResponseBody(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 DescribeTagsTrendResponseBody 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 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 ResultObject resultObject; private Boolean success; private Builder() { } private Builder(DescribeTagsTrendResponseBody 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(ResultObject resultObject) { this.resultObject = resultObject; return this; } /** * <p>Whether the request was successful.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder success(Boolean success) { this.success = success; return this; } public DescribeTagsTrendResponseBody build() { return new DescribeTagsTrendResponseBody(this); } } /** * * {@link DescribeTagsTrendResponseBody} extends {@link TeaModel} * * <p>DescribeTagsTrendResponseBody</p> */ public static class Data extends TeaModel { @com.aliyun.core.annotation.NameInMap("num") private Long num; @com.aliyun.core.annotation.NameInMap("scale") private String scale; private Data(Builder builder) { this.num = builder.num; this.scale = builder.scale; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return num */ public Long getNum() { return this.num; } /** * @return scale */ public String getScale() { return this.scale; } public static final class Builder { private Long num; private String scale; private Builder() { } private Builder(Data model) { this.num = model.num; this.scale = model.scale; } /** * <p>The number of items in this category.</p> * * <strong>example:</strong> * <p>100</p> */ public Builder num(Long num) { this.num = num; return this; } /** * <p>Proportion</p> * * <strong>example:</strong> * <p>10%</p> */ public Builder scale(String scale) { this.scale = scale; return this; } public Data build() { return new Data(this); } } } /** * * {@link DescribeTagsTrendResponseBody} extends {@link TeaModel} * * <p>DescribeTagsTrendResponseBody</p> */ public static class Series extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<Data> data; @com.aliyun.core.annotation.NameInMap("name") private String name; private Series(Builder builder) { this.data = builder.data; this.name = builder.name; } public static Builder builder() { return new Builder(); } public static Series create() { return builder().build(); } /** * @return data */ public java.util.List<Data> getData() { return this.data; } /** * @return name */ public String getName() { return this.name; } public static final class Builder { private java.util.List<Data> data; private String name; private Builder() { } private Builder(Series model) { this.data = model.data; this.name = model.name; } /** * <p>Chart data list</p> */ public Builder data(java.util.List<Data> data) { this.data = data; return this; } /** * <p>Category name.</p> * * <strong>example:</strong> * <p>rm0102</p> */ public Builder name(String name) { this.name = name; return this; } public Series build() { return new Series(this); } } } /** * * {@link DescribeTagsTrendResponseBody} extends {@link TeaModel} * * <p>DescribeTagsTrendResponseBody</p> */ public static class Xaxis extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<String> data; private Xaxis(Builder builder) { this.data = builder.data; } public static Builder builder() { return new Builder(); } public static Xaxis create() { return builder().build(); } /** * @return data */ public java.util.List<String> getData() { return this.data; } public static final class Builder { private java.util.List<String> data; private Builder() { } private Builder(Xaxis model) { this.data = model.data; } /** * <p>X-axis data</p> */ public Builder data(java.util.List<String> data) { this.data = data; return this; } public Xaxis build() { return new Xaxis(this); } } } /** * * {@link DescribeTagsTrendResponseBody} extends {@link TeaModel} * * <p>DescribeTagsTrendResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("series") private java.util.List<Series> series; @com.aliyun.core.annotation.NameInMap("xaxis") private Xaxis xaxis; private ResultObject(Builder builder) { this.series = builder.series; this.xaxis = builder.xaxis; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return series */ public java.util.List<Series> getSeries() { return this.series; } /** * @return xaxis */ public Xaxis getXaxis() { return this.xaxis; } public static final class Builder { private java.util.List<Series> series; private Xaxis xaxis; private Builder() { } private Builder(ResultObject model) { this.series = model.series; this.xaxis = model.xaxis; } /** * <p>Data list</p> */ public Builder series(java.util.List<Series> series) { this.series = series; return this; } /** * <p>xaxis returned data</p> */ public Builder xaxis(Xaxis xaxis) { this.xaxis = xaxis; 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/DescribeTaskListRequest.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 DescribeTaskListRequest} extends {@link RequestModel} * * <p>DescribeTaskListRequest</p> */ public class DescribeTaskListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CurrentPage") private String currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("IsPage") private Boolean isPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @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 DescribeTaskListRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.isPage = builder.isPage; this.lang = builder.lang; this.pageSize = builder.pageSize; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeTaskListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return isPage */ public Boolean getIsPage() { return this.isPage; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeTaskListRequest, Builder> { private String currentPage; private Boolean isPage; private String lang; private String pageSize; private String regId; private Builder() { super(); } private Builder(DescribeTaskListRequest request) { super(request); this.currentPage = request.currentPage; this.isPage = request.isPage; this.lang = request.lang; this.pageSize = request.pageSize; this.regId = request.regId; } /** * <p>Current page.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(String currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Whether to paginate.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder isPage(Boolean isPage) { this.putQueryParameter("IsPage", isPage); this.isPage = isPage; 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>Page size, with a default value of 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 DescribeTaskListRequest build() { return new DescribeTaskListRequest(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/DescribeTaskListResponse.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 DescribeTaskListResponse} extends {@link TeaModel} * * <p>DescribeTaskListResponse</p> */ public class DescribeTaskListResponse 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 DescribeTaskListResponseBody body; private DescribeTaskListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeTaskListResponse 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 DescribeTaskListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeTaskListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeTaskListResponseBody body); @Override DescribeTaskListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeTaskListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeTaskListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeTaskListResponse 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(DescribeTaskListResponseBody body) { this.body = body; return this; } @Override public DescribeTaskListResponse build() { return new DescribeTaskListResponse(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/DescribeTaskListResponseBody.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 DescribeTaskListResponseBody} extends {@link TeaModel} * * <p>DescribeTaskListResponseBody</p> */ public class DescribeTaskListResponseBody 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 DescribeTaskListResponseBody(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 DescribeTaskListResponseBody 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(DescribeTaskListResponseBody 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>A32FE941-35F2-5378-B37C-4B8FDB16F094</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>Page size, with a default value of 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>6</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 DescribeTaskListResponseBody build() { return new DescribeTaskListResponseBody(this); } } /** * * {@link DescribeTaskListResponseBody} extends {@link TeaModel} * * <p>DescribeTaskListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("completionTime") private Long completionTime; @com.aliyun.core.annotation.NameInMap("createTime") private Long createTime; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("mark") private Integer mark; @com.aliyun.core.annotation.NameInMap("remark") private String remark; @com.aliyun.core.annotation.NameInMap("sceneName") private String sceneName; @com.aliyun.core.annotation.NameInMap("status") private String status; @com.aliyun.core.annotation.NameInMap("taskLogId") private Long taskLogId; @com.aliyun.core.annotation.NameInMap("taskType") private String taskType; private ResultObject(Builder builder) { this.completionTime = builder.completionTime; this.createTime = builder.createTime; this.id = builder.id; this.mark = builder.mark; this.remark = builder.remark; this.sceneName = builder.sceneName; this.status = builder.status; this.taskLogId = builder.taskLogId; this.taskType = builder.taskType; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return completionTime */ public Long getCompletionTime() { return this.completionTime; } /** * @return createTime */ public Long getCreateTime() { return this.createTime; } /** * @return id */ public Long getId() { return this.id; } /** * @return mark */ public Integer getMark() { return this.mark; } /** * @return remark */ public String getRemark() { return this.remark; } /** * @return sceneName */ public String getSceneName() { return this.sceneName; } /** * @return status */ public String getStatus() { return this.status; } /** * @return taskLogId */ public Long getTaskLogId() { return this.taskLogId; } /** * @return taskType */ public String getTaskType() { return this.taskType; } public static final class Builder { private Long completionTime; private Long createTime; private Long id; private Integer mark; private String remark; private String sceneName; private String status; private Long taskLogId; private String taskType; private Builder() { } private Builder(ResultObject model) { this.completionTime = model.completionTime; this.createTime = model.createTime; this.id = model.id; this.mark = model.mark; this.remark = model.remark; this.sceneName = model.sceneName; this.status = model.status; this.taskLogId = model.taskLogId; this.taskType = model.taskType; } /** * <p>Completion time, in milliseconds.</p> * * <strong>example:</strong> * <p>1753804800000</p> */ public Builder completionTime(Long completionTime) { this.completionTime = completionTime; return this; } /** * <p>Creation time.</p> * * <strong>example:</strong> * <p>1753804800000</p> */ public Builder createTime(Long createTime) { this.createTime = createTime; return this; } /** * <p>Task ID.</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Total number of mark information.</p> * * <strong>example:</strong> * <p>100</p> */ public Builder mark(Integer mark) { this.mark = mark; return this; } /** * <p>Remark.</p> * * <strong>example:</strong> * <p>备注</p> */ public Builder remark(String remark) { this.remark = remark; return this; } /** * <p>Scene name</p> * * <strong>example:</strong> * <p>样本调度</p> */ public Builder sceneName(String sceneName) { this.sceneName = sceneName; return this; } /** * <p>Data status.</p> * <p>-1: Failed * 0: Deleted * 1: Pending * 2: Success</p> * * <strong>example:</strong> * <p>2</p> */ public Builder status(String status) { this.status = status; return this; } /** * <p>Task ID.</p> * * <strong>example:</strong> * <p>1102</p> */ public Builder taskLogId(Long taskLogId) { this.taskLogId = taskLogId; return this; } /** * <p>Task type * 1: Data upload * 2: Supplemental upload * 3: Labeling</p> * * <strong>example:</strong> * <p>1</p> */ public Builder taskType(String taskType) { this.taskType = taskType; 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/DescribeTaskLogListRequest.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 DescribeTaskLogListRequest} extends {@link RequestModel} * * <p>DescribeTaskLogListRequest</p> */ public class DescribeTaskLogListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CurrentPage") private String currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("IsPage") private Boolean isPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") private String pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("TaskId") private String taskId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("TaskLogId") private String taskLogId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeTaskLogListRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.isPage = builder.isPage; this.lang = builder.lang; this.pageSize = builder.pageSize; this.taskId = builder.taskId; this.taskLogId = builder.taskLogId; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeTaskLogListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return isPage */ public Boolean getIsPage() { return this.isPage; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return taskId */ public String getTaskId() { return this.taskId; } /** * @return taskLogId */ public String getTaskLogId() { return this.taskLogId; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeTaskLogListRequest, Builder> { private String currentPage; private Boolean isPage; private String lang; private String pageSize; private String taskId; private String taskLogId; private String regId; private Builder() { super(); } private Builder(DescribeTaskLogListRequest request) { super(request); this.currentPage = request.currentPage; this.isPage = request.isPage; this.lang = request.lang; this.pageSize = request.pageSize; this.taskId = request.taskId; this.taskLogId = request.taskLogId; this.regId = request.regId; } /** * <p>Current page.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(String currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Whether to paginate.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder isPage(Boolean isPage) { this.putQueryParameter("IsPage", isPage); this.isPage = isPage; return this; } /** * <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>Page size.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(String pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>Task ID.</p> * * <strong>example:</strong> * <p>18044</p> */ public Builder taskId(String taskId) { this.putQueryParameter("TaskId", taskId); this.taskId = taskId; return this; } /** * <p>Task log ID</p> * * <strong>example:</strong> * <p>107</p> */ public Builder taskLogId(String taskLogId) { this.putQueryParameter("TaskLogId", taskLogId); this.taskLogId = taskLogId; 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 DescribeTaskLogListRequest build() { return new DescribeTaskLogListRequest(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/DescribeTaskLogListResponse.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 DescribeTaskLogListResponse} extends {@link TeaModel} * * <p>DescribeTaskLogListResponse</p> */ public class DescribeTaskLogListResponse 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 DescribeTaskLogListResponseBody body; private DescribeTaskLogListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeTaskLogListResponse 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 DescribeTaskLogListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeTaskLogListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeTaskLogListResponseBody body); @Override DescribeTaskLogListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeTaskLogListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeTaskLogListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeTaskLogListResponse 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(DescribeTaskLogListResponseBody body) { this.body = body; return this; } @Override public DescribeTaskLogListResponse build() { return new DescribeTaskLogListResponse(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/DescribeTaskLogListResponseBody.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 DescribeTaskLogListResponseBody} extends {@link TeaModel} * * <p>DescribeTaskLogListResponseBody</p> */ public class DescribeTaskLogListResponseBody 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 DescribeTaskLogListResponseBody(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 DescribeTaskLogListResponseBody 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(DescribeTaskLogListResponseBody 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>A32FE941-35F2-5378-B37C-4B8FDB16F094</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>6</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 DescribeTaskLogListResponseBody build() { return new DescribeTaskLogListResponseBody(this); } } /** * * {@link DescribeTaskLogListResponseBody} extends {@link TeaModel} * * <p>DescribeTaskLogListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("completionTime") private Long completionTime; @com.aliyun.core.annotation.NameInMap("createTime") private Long createTime; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("remark") private String remark; @com.aliyun.core.annotation.NameInMap("sceneName") private String sceneName; @com.aliyun.core.annotation.NameInMap("status") private String status; @com.aliyun.core.annotation.NameInMap("taskType") private String taskType; private ResultObject(Builder builder) { this.completionTime = builder.completionTime; this.createTime = builder.createTime; this.id = builder.id; this.remark = builder.remark; this.sceneName = builder.sceneName; this.status = builder.status; this.taskType = builder.taskType; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return completionTime */ public Long getCompletionTime() { return this.completionTime; } /** * @return createTime */ public Long getCreateTime() { return this.createTime; } /** * @return id */ public Long getId() { return this.id; } /** * @return remark */ public String getRemark() { return this.remark; } /** * @return sceneName */ public String getSceneName() { return this.sceneName; } /** * @return status */ public String getStatus() { return this.status; } /** * @return taskType */ public String getTaskType() { return this.taskType; } public static final class Builder { private Long completionTime; private Long createTime; private Long id; private String remark; private String sceneName; private String status; private String taskType; private Builder() { } private Builder(ResultObject model) { this.completionTime = model.completionTime; this.createTime = model.createTime; this.id = model.id; this.remark = model.remark; this.sceneName = model.sceneName; this.status = model.status; this.taskType = model.taskType; } /** * <p>Completion time, in milliseconds.</p> * * <strong>example:</strong> * <p>1753804800000</p> */ public Builder completionTime(Long completionTime) { this.completionTime = completionTime; return this; } /** * <p>Task creation time.</p> * * <strong>example:</strong> * <p>1753804800000</p> */ public Builder createTime(Long createTime) { this.createTime = createTime; return this; } /** * <p>Log ID.</p> * * <strong>example:</strong> * <p>2793</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Remark.</p> * * <strong>example:</strong> * <p>备注</p> */ public Builder remark(String remark) { this.remark = remark; return this; } /** * <p>Scene name</p> * * <strong>example:</strong> * <p>coupon_abuse_detection</p> */ public Builder sceneName(String sceneName) { this.sceneName = sceneName; return this; } /** * <p>Status.</p> * <p>0: Deleted * 1: Normal</p> * * <strong>example:</strong> * <p>1</p> */ public Builder status(String status) { this.status = status; return this; } /** * <p>Task type</p> * <p>1: Data upload * 2: Supplemental upload * 3: Labeling</p> * * <strong>example:</strong> * <p>1</p> */ public Builder taskType(String taskType) { this.taskType = taskType; 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/DescribeTemplateCountRequest.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 DescribeTemplateCountRequest} extends {@link RequestModel} * * <p>DescribeTemplateCountRequest</p> */ public class DescribeTemplateCountRequest 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 DescribeTemplateCountRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeTemplateCountRequest 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<DescribeTemplateCountRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeTemplateCountRequest 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> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeTemplateCountRequest build() { return new DescribeTemplateCountRequest(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/DescribeTemplateCountResponse.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 DescribeTemplateCountResponse} extends {@link TeaModel} * * <p>DescribeTemplateCountResponse</p> */ public class DescribeTemplateCountResponse 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 DescribeTemplateCountResponseBody body; private DescribeTemplateCountResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeTemplateCountResponse 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 DescribeTemplateCountResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeTemplateCountResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeTemplateCountResponseBody body); @Override DescribeTemplateCountResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeTemplateCountResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeTemplateCountResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeTemplateCountResponse 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(DescribeTemplateCountResponseBody body) { this.body = body; return this; } @Override public DescribeTemplateCountResponse build() { return new DescribeTemplateCountResponse(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/DescribeTemplateCountResponseBody.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 DescribeTemplateCountResponseBody} extends {@link TeaModel} * * <p>DescribeTemplateCountResponseBody</p> */ public class DescribeTemplateCountResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeTemplateCountResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeTemplateCountResponseBody 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(DescribeTemplateCountResponseBody 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 DescribeTemplateCountResponseBody build() { return new DescribeTemplateCountResponseBody(this); } } /** * * {@link DescribeTemplateCountResponseBody} extends {@link TeaModel} * * <p>DescribeTemplateCountResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("limit") private Boolean limit; @com.aliyun.core.annotation.NameInMap("maxTotalItem") private Integer maxTotalItem; @com.aliyun.core.annotation.NameInMap("totalItem") private Integer 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 Integer getMaxTotalItem() { return this.maxTotalItem; } /** * @return totalItem */ public Integer getTotalItem() { return this.totalItem; } public static final class Builder { private Boolean limit; private Integer maxTotalItem; private Integer totalItem; private Builder() { } private Builder(ResultObject model) { this.limit = model.limit; this.maxTotalItem = model.maxTotalItem; this.totalItem = model.totalItem; } /** * <p>Template quantity limit.</p> * * <strong>example:</strong> * <p>false</p> */ public Builder limit(Boolean limit) { this.limit = limit; return this; } /** * <p>Maximum count</p> * * <strong>example:</strong> * <p>1000</p> */ public Builder maxTotalItem(Integer maxTotalItem) { this.maxTotalItem = maxTotalItem; return this; } /** * <p>Total count.</p> * * <strong>example:</strong> * <p>13</p> */ public Builder totalItem(Integer 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/DescribeTemplateDownloadRequest.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 DescribeTemplateDownloadRequest} extends {@link RequestModel} * * <p>DescribeTemplateDownloadRequest</p> */ public class DescribeTemplateDownloadRequest 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 DescribeTemplateDownloadRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeTemplateDownloadRequest 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<DescribeTemplateDownloadRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeTemplateDownloadRequest 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> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeTemplateDownloadRequest build() { return new DescribeTemplateDownloadRequest(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/DescribeTemplateDownloadResponse.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 DescribeTemplateDownloadResponse} extends {@link TeaModel} * * <p>DescribeTemplateDownloadResponse</p> */ public class DescribeTemplateDownloadResponse 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 DescribeTemplateDownloadResponseBody body; private DescribeTemplateDownloadResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeTemplateDownloadResponse 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 DescribeTemplateDownloadResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeTemplateDownloadResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeTemplateDownloadResponseBody body); @Override DescribeTemplateDownloadResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeTemplateDownloadResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeTemplateDownloadResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeTemplateDownloadResponse 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(DescribeTemplateDownloadResponseBody body) { this.body = body; return this; } @Override public DescribeTemplateDownloadResponse build() { return new DescribeTemplateDownloadResponse(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/DescribeTemplateDownloadResponseBody.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 DescribeTemplateDownloadResponseBody} extends {@link TeaModel} * * <p>DescribeTemplateDownloadResponseBody</p> */ public class DescribeTemplateDownloadResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("data") private Boolean data; private DescribeTemplateDownloadResponseBody(Builder builder) { this.requestId = builder.requestId; this.data = builder.data; } public static Builder builder() { return new Builder(); } public static DescribeTemplateDownloadResponseBody 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(DescribeTemplateDownloadResponseBody 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>Data object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder data(Boolean data) { this.data = data; return this; } public DescribeTemplateDownloadResponseBody build() { return new DescribeTemplateDownloadResponseBody(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/DescribeTemplatePageListRequest.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 DescribeTemplatePageListRequest} extends {@link RequestModel} * * <p>DescribeTemplatePageListRequest</p> */ public class DescribeTemplatePageListRequest 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("eventCodes") private String eventCodes; @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; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("templateName") private String templateName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("templateSearchItem") private String templateSearchItem; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("templateStatus") private String templateStatus; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("templateType") private String templateType; private DescribeTemplatePageListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.currentPage = builder.currentPage; this.eventCodes = builder.eventCodes; this.pageSize = builder.pageSize; this.regId = builder.regId; this.templateName = builder.templateName; this.templateSearchItem = builder.templateSearchItem; this.templateStatus = builder.templateStatus; this.templateType = builder.templateType; } public static Builder builder() { return new Builder(); } public static DescribeTemplatePageListRequest 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 eventCodes */ public String getEventCodes() { return this.eventCodes; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return templateName */ public String getTemplateName() { return this.templateName; } /** * @return templateSearchItem */ public String getTemplateSearchItem() { return this.templateSearchItem; } /** * @return templateStatus */ public String getTemplateStatus() { return this.templateStatus; } /** * @return templateType */ public String getTemplateType() { return this.templateType; } public static final class Builder extends Request.Builder<DescribeTemplatePageListRequest, Builder> { private String lang; private String currentPage; private String eventCodes; private String pageSize; private String regId; private String templateName; private String templateSearchItem; private String templateStatus; private String templateType; private Builder() { super(); } private Builder(DescribeTemplatePageListRequest request) { super(request); this.lang = request.lang; this.currentPage = request.currentPage; this.eventCodes = request.eventCodes; this.pageSize = request.pageSize; this.regId = request.regId; this.templateName = request.templateName; this.templateSearchItem = request.templateSearchItem; this.templateStatus = request.templateStatus; this.templateType = request.templateType; } /** * <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>Event code.</p> * * <strong>example:</strong> * <p>d6_h1fe4cfa1g</p> */ public Builder eventCodes(String eventCodes) { this.putQueryParameter("eventCodes", eventCodes); this.eventCodes = eventCodes; return this; } /** * <p>Page size, 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; } /** * <p>Event name</p> * * <strong>example:</strong> * <p>注册事件</p> */ public Builder templateName(String templateName) { this.putQueryParameter("templateName", templateName); this.templateName = templateName; return this; } /** * <p>Event template search field</p> * * <strong>example:</strong> * <p>age</p> */ public Builder templateSearchItem(String templateSearchItem) { this.putQueryParameter("templateSearchItem", templateSearchItem); this.templateSearchItem = templateSearchItem; return this; } /** * <p>Event status</p> * * <strong>example:</strong> * <p>ONLINE</p> */ public Builder templateStatus(String templateStatus) { this.putQueryParameter("templateStatus", templateStatus); this.templateStatus = templateStatus; return this; } /** * <p>Template type</p> * * <strong>example:</strong> * <p>PUB_SERVICE</p> */ public Builder templateType(String templateType) { this.putQueryParameter("templateType", templateType); this.templateType = templateType; return this; } @Override public DescribeTemplatePageListRequest build() { return new DescribeTemplatePageListRequest(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/DescribeTemplatePageListResponse.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 DescribeTemplatePageListResponse} extends {@link TeaModel} * * <p>DescribeTemplatePageListResponse</p> */ public class DescribeTemplatePageListResponse 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 DescribeTemplatePageListResponseBody body; private DescribeTemplatePageListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeTemplatePageListResponse 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 DescribeTemplatePageListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeTemplatePageListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeTemplatePageListResponseBody body); @Override DescribeTemplatePageListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeTemplatePageListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeTemplatePageListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeTemplatePageListResponse 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(DescribeTemplatePageListResponseBody body) { this.body = body; return this; } @Override public DescribeTemplatePageListResponse build() { return new DescribeTemplatePageListResponse(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/DescribeTemplatePageListResponseBody.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 DescribeTemplatePageListResponseBody} extends {@link TeaModel} * * <p>DescribeTemplatePageListResponseBody</p> */ public class DescribeTemplatePageListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("currentPage") private Integer currentPage; @com.aliyun.core.annotation.NameInMap("pageSize") private Integer pageSize; @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("totalItem") private Integer totalItem; @com.aliyun.core.annotation.NameInMap("totalPage") private Integer totalPage; private DescribeTemplatePageListResponseBody(Builder builder) { this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.resultObject = builder.resultObject; this.totalItem = builder.totalItem; this.totalPage = builder.totalPage; } public static Builder builder() { return new Builder(); } public static DescribeTemplatePageListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @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 Integer currentPage; private Integer pageSize; private String requestId; private java.util.List<ResultObject> resultObject; private Integer totalItem; private Integer totalPage; private Builder() { } private Builder(DescribeTemplatePageListResponseBody model) { this.currentPage = model.currentPage; this.pageSize = model.pageSize; this.requestId = model.requestId; this.resultObject = model.resultObject; this.totalItem = model.totalItem; this.totalPage = model.totalPage; } /** * <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>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>Total number of items</p> * * <strong>example:</strong> * <p>6</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 DescribeTemplatePageListResponseBody build() { return new DescribeTemplatePageListResponseBody(this); } } /** * * {@link DescribeTemplatePageListResponseBody} extends {@link TeaModel} * * <p>DescribeTemplatePageListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.NameInMap("eventName") private String eventName; @com.aliyun.core.annotation.NameInMap("gmtCreate") private Long gmtCreate; @com.aliyun.core.annotation.NameInMap("gmtModified") private Long gmtModified; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("ruleCount") private Integer ruleCount; @com.aliyun.core.annotation.NameInMap("templateCode") private String templateCode; @com.aliyun.core.annotation.NameInMap("templateName") private String templateName; @com.aliyun.core.annotation.NameInMap("templateStatus") private String templateStatus; @com.aliyun.core.annotation.NameInMap("templateType") private String templateType; @com.aliyun.core.annotation.NameInMap("userCount") private Integer userCount; @com.aliyun.core.annotation.NameInMap("version") private Integer version; private ResultObject(Builder builder) { this.description = builder.description; this.eventCode = builder.eventCode; this.eventName = builder.eventName; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.id = builder.id; this.ruleCount = builder.ruleCount; this.templateCode = builder.templateCode; this.templateName = builder.templateName; this.templateStatus = builder.templateStatus; this.templateType = builder.templateType; this.userCount = builder.userCount; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return description */ public String getDescription() { return this.description; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return gmtModified */ public Long getGmtModified() { return this.gmtModified; } /** * @return id */ public Long getId() { return this.id; } /** * @return ruleCount */ public Integer getRuleCount() { return this.ruleCount; } /** * @return templateCode */ public String getTemplateCode() { return this.templateCode; } /** * @return templateName */ public String getTemplateName() { return this.templateName; } /** * @return templateStatus */ public String getTemplateStatus() { return this.templateStatus; } /** * @return templateType */ public String getTemplateType() { return this.templateType; } /** * @return userCount */ public Integer getUserCount() { return this.userCount; } /** * @return version */ public Integer getVersion() { return this.version; } public static final class Builder { private String description; private String eventCode; private String eventName; private Long gmtCreate; private Long gmtModified; private Long id; private Integer ruleCount; private String templateCode; private String templateName; private String templateStatus; private String templateType; private Integer userCount; private Integer version; private Builder() { } private Builder(ResultObject model) { this.description = model.description; this.eventCode = model.eventCode; this.eventName = model.eventName; this.gmtCreate = model.gmtCreate; this.gmtModified = model.gmtModified; this.id = model.id; this.ruleCount = model.ruleCount; this.templateCode = model.templateCode; this.templateName = model.templateName; this.templateStatus = model.templateStatus; this.templateType = model.templateType; this.userCount = model.userCount; this.version = model.version; } /** * <p>Description information.</p> * * <strong>example:</strong> * <p>描述</p> */ public Builder description(String description) { this.description = description; 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>Creation time.</p> * * <strong>example:</strong> * <p>1621578648000</p> */ public Builder gmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * <p>Modification time.</p> * * <strong>example:</strong> * <p>1565701886000</p> */ public Builder gmtModified(Long gmtModified) { this.gmtModified = gmtModified; return this; } /** * <p>Template ID.</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Number of policies</p> * * <strong>example:</strong> * <p>3</p> */ public Builder ruleCount(Integer ruleCount) { this.ruleCount = ruleCount; return this; } /** * <p>Template code.</p> * * <strong>example:</strong> * <p>register</p> */ public Builder templateCode(String templateCode) { this.templateCode = templateCode; return this; } /** * <p>Template name.</p> * * <strong>example:</strong> * <p>注册事件</p> */ public Builder templateName(String templateName) { this.templateName = templateName; return this; } /** * <p>Event status</p> * * <strong>example:</strong> * <p>ONLINE</p> */ public Builder templateStatus(String templateStatus) { this.templateStatus = templateStatus; return this; } /** * <p>Template type</p> * * <strong>example:</strong> * <p>PUB_SERVICE</p> */ public Builder templateType(String templateType) { this.templateType = templateType; return this; } /** * <p>Number of customer authorizations</p> * * <strong>example:</strong> * <p>1</p> */ public Builder userCount(Integer userCount) { this.userCount = userCount; return this; } /** * <p>Version number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder version(Integer version) { this.version = version; 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/DescribeUsedServiceRequest.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 DescribeUsedServiceRequest} extends {@link RequestModel} * * <p>DescribeUsedServiceRequest</p> */ public class DescribeUsedServiceRequest 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 DescribeUsedServiceRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeUsedServiceRequest 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<DescribeUsedServiceRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeUsedServiceRequest 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 DescribeUsedServiceRequest build() { return new DescribeUsedServiceRequest(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/DescribeUsedServiceResponse.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 DescribeUsedServiceResponse} extends {@link TeaModel} * * <p>DescribeUsedServiceResponse</p> */ public class DescribeUsedServiceResponse 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 DescribeUsedServiceResponseBody body; private DescribeUsedServiceResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeUsedServiceResponse 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 DescribeUsedServiceResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeUsedServiceResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeUsedServiceResponseBody body); @Override DescribeUsedServiceResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeUsedServiceResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeUsedServiceResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeUsedServiceResponse 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(DescribeUsedServiceResponseBody body) { this.body = body; return this; } @Override public DescribeUsedServiceResponse build() { return new DescribeUsedServiceResponse(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/DescribeUsedServiceResponseBody.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 DescribeUsedServiceResponseBody} extends {@link TeaModel} * * <p>DescribeUsedServiceResponseBody</p> */ public class DescribeUsedServiceResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("records") private java.util.List<Records> records; private DescribeUsedServiceResponseBody(Builder builder) { this.requestId = builder.requestId; this.records = builder.records; } public static Builder builder() { return new Builder(); } public static DescribeUsedServiceResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return records */ public java.util.List<Records> getRecords() { return this.records; } public static final class Builder { private String requestId; private java.util.List<Records> records; private Builder() { } private Builder(DescribeUsedServiceResponseBody model) { this.requestId = model.requestId; this.records = model.records; } /** * <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>Record details</p> */ public Builder records(java.util.List<Records> records) { this.records = records; return this; } public DescribeUsedServiceResponseBody build() { return new DescribeUsedServiceResponseBody(this); } } /** * * {@link DescribeUsedServiceResponseBody} extends {@link TeaModel} * * <p>DescribeUsedServiceResponseBody</p> */ public static class Records extends TeaModel { @com.aliyun.core.annotation.NameInMap("enName") private String enName; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("serviceCode") private String serviceCode; private Records(Builder builder) { this.enName = builder.enName; this.name = builder.name; this.serviceCode = builder.serviceCode; } public static Builder builder() { return new Builder(); } public static Records create() { return builder().build(); } /** * @return enName */ public String getEnName() { return this.enName; } /** * @return name */ public String getName() { return this.name; } /** * @return serviceCode */ public String getServiceCode() { return this.serviceCode; } public static final class Builder { private String enName; private String name; private String serviceCode; private Builder() { } private Builder(Records model) { this.enName = model.enName; this.name = model.name; this.serviceCode = model.serviceCode; } /** * <p>English name</p> * * <strong>example:</strong> * <p>account_abuse</p> */ public Builder enName(String enName) { this.enName = enName; return this; } /** * <p>Service name</p> * * <strong>example:</strong> * <p>注册风险识别服务</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Service code</p> * * <strong>example:</strong> * <p>account_abuse</p> */ public Builder serviceCode(String serviceCode) { this.serviceCode = serviceCode; return this; } public Records build() { return new Records(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/DescribeUserInfoRequest.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 DescribeUserInfoRequest} extends {@link RequestModel} * * <p>DescribeUserInfoRequest</p> */ public class DescribeUserInfoRequest 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 DescribeUserInfoRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeUserInfoRequest 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<DescribeUserInfoRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeUserInfoRequest 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> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeUserInfoRequest build() { return new DescribeUserInfoRequest(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/DescribeUserInfoResponse.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 DescribeUserInfoResponse} extends {@link TeaModel} * * <p>DescribeUserInfoResponse</p> */ public class DescribeUserInfoResponse 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 DescribeUserInfoResponseBody body; private DescribeUserInfoResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeUserInfoResponse 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 DescribeUserInfoResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeUserInfoResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeUserInfoResponseBody body); @Override DescribeUserInfoResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeUserInfoResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeUserInfoResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeUserInfoResponse 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(DescribeUserInfoResponseBody body) { this.body = body; return this; } @Override public DescribeUserInfoResponse build() { return new DescribeUserInfoResponse(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/DescribeUserInfoResponseBody.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 DescribeUserInfoResponseBody} extends {@link TeaModel} * * <p>DescribeUserInfoResponseBody</p> */ public class DescribeUserInfoResponseBody 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 ResultObject resultObject; @com.aliyun.core.annotation.NameInMap("success") private Boolean success; private DescribeUserInfoResponseBody(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 DescribeUserInfoResponseBody 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 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 ResultObject resultObject; private Boolean success; private Builder() { } private Builder(DescribeUserInfoResponseBody 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> */ public Builder resultObject(ResultObject 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 DescribeUserInfoResponseBody build() { return new DescribeUserInfoResponseBody(this); } } /** * * {@link DescribeUserInfoResponseBody} extends {@link TeaModel} * * <p>DescribeUserInfoResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("clientIp") private String clientIp; @com.aliyun.core.annotation.NameInMap("subId") private String subId; @com.aliyun.core.annotation.NameInMap("userId") private Long userId; @com.aliyun.core.annotation.NameInMap("userName") private String userName; private ResultObject(Builder builder) { this.clientIp = builder.clientIp; this.subId = builder.subId; this.userId = builder.userId; this.userName = builder.userName; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return clientIp */ public String getClientIp() { return this.clientIp; } /** * @return subId */ public String getSubId() { return this.subId; } /** * @return userId */ public Long getUserId() { return this.userId; } /** * @return userName */ public String getUserName() { return this.userName; } public static final class Builder { private String clientIp; private String subId; private Long userId; private String userName; private Builder() { } private Builder(ResultObject model) { this.clientIp = model.clientIp; this.subId = model.subId; this.userId = model.userId; this.userName = model.userName; } /** * <p>Client IP.</p> * * <strong>example:</strong> * <p>192.168.0.1</p> */ public Builder clientIp(String clientIp) { this.clientIp = clientIp; return this; } /** * <p>Sub-account ID</p> * * <strong>example:</strong> * <p>555666</p> */ public Builder subId(String subId) { this.subId = subId; return this; } /** * <p>User UID</p> * * <strong>example:</strong> * <p>15633333331111</p> */ public Builder userId(Long userId) { this.userId = userId; return this; } /** * <p>User name</p> * * <strong>example:</strong> * <p>root</p> */ public Builder userName(String userName) { this.userName = userName; 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/DescribeVariableBindDetailRequest.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 DescribeVariableBindDetailRequest} extends {@link RequestModel} * * <p>DescribeVariableBindDetailRequest</p> */ public class DescribeVariableBindDetailRequest 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("defineId") private Long defineId; @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 DescribeVariableBindDetailRequest(Builder builder) { super(builder); this.lang = builder.lang; this.defineId = builder.defineId; this.id = builder.id; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeVariableBindDetailRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return defineId */ public Long getDefineId() { return this.defineId; } /** * @return id */ public Long getId() { return this.id; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeVariableBindDetailRequest, Builder> { private String lang; private Long defineId; private Long id; private String regId; private Builder() { super(); } private Builder(DescribeVariableBindDetailRequest request) { super(request); this.lang = request.lang; this.defineId = request.defineId; 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>Bound variable definition ID</p> * * <strong>example:</strong> * <p>10</p> */ public Builder defineId(Long defineId) { this.putQueryParameter("defineId", defineId); this.defineId = defineId; return this; } /** * <p>Primary key ID of the variable, which is empty if it&quot;s a new addition</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 DescribeVariableBindDetailRequest build() { return new DescribeVariableBindDetailRequest(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/DescribeVariableBindDetailResponse.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 DescribeVariableBindDetailResponse} extends {@link TeaModel} * * <p>DescribeVariableBindDetailResponse</p> */ public class DescribeVariableBindDetailResponse 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 DescribeVariableBindDetailResponseBody body; private DescribeVariableBindDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeVariableBindDetailResponse 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 DescribeVariableBindDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeVariableBindDetailResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeVariableBindDetailResponseBody body); @Override DescribeVariableBindDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeVariableBindDetailResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeVariableBindDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeVariableBindDetailResponse 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(DescribeVariableBindDetailResponseBody body) { this.body = body; return this; } @Override public DescribeVariableBindDetailResponse build() { return new DescribeVariableBindDetailResponse(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/DescribeVariableBindDetailResponseBody.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 DescribeVariableBindDetailResponseBody} extends {@link TeaModel} * * <p>DescribeVariableBindDetailResponseBody</p> */ public class DescribeVariableBindDetailResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeVariableBindDetailResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeVariableBindDetailResponseBody 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(DescribeVariableBindDetailResponseBody 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 DescribeVariableBindDetailResponseBody build() { return new DescribeVariableBindDetailResponseBody(this); } } /** * * {@link DescribeVariableBindDetailResponseBody} extends {@link TeaModel} * * <p>DescribeVariableBindDetailResponseBody</p> */ public static class Params extends TeaModel { @com.aliyun.core.annotation.NameInMap("eventFieldName") private String eventFieldName; @com.aliyun.core.annotation.NameInMap("required") private Boolean required; @com.aliyun.core.annotation.NameInMap("variableName") private String variableName; private Params(Builder builder) { this.eventFieldName = builder.eventFieldName; this.required = builder.required; this.variableName = builder.variableName; } public static Builder builder() { return new Builder(); } public static Params create() { return builder().build(); } /** * @return eventFieldName */ public String getEventFieldName() { return this.eventFieldName; } /** * @return required */ public Boolean getRequired() { return this.required; } /** * @return variableName */ public String getVariableName() { return this.variableName; } public static final class Builder { private String eventFieldName; private Boolean required; private String variableName; private Builder() { } private Builder(Params model) { this.eventFieldName = model.eventFieldName; this.required = model.required; this.variableName = model.variableName; } /** * <p>Event field name</p> * * <strong>example:</strong> * <p>ip</p> */ public Builder eventFieldName(String eventFieldName) { this.eventFieldName = eventFieldName; return this; } /** * <p>Whether it is required, default is false</p> * * <strong>example:</strong> * <p>false</p> */ public Builder required(Boolean required) { this.required = required; return this; } /** * <p>Bound variable name</p> * * <strong>example:</strong> * <p>ip</p> */ public Builder variableName(String variableName) { this.variableName = variableName; return this; } public Params build() { return new Params(this); } } } /** * * {@link DescribeVariableBindDetailResponseBody} extends {@link TeaModel} * * <p>DescribeVariableBindDetailResponseBody</p> */ public static class RelationRules extends TeaModel { @com.aliyun.core.annotation.NameInMap("key") private String key; @com.aliyun.core.annotation.NameInMap("value") private String value; private RelationRules(Builder builder) { this.key = builder.key; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static RelationRules create() { return builder().build(); } /** * @return key */ public String getKey() { return this.key; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder { private String key; private String value; private Builder() { } private Builder(RelationRules model) { this.key = model.key; this.value = model.value; } /** * <p>Policy rule ID</p> * * <strong>example:</strong> * <p>104566</p> */ public Builder key(String key) { this.key = key; return this; } /** * <p>Policy name</p> * * <strong>example:</strong> * <p>营销风险识别</p> */ public Builder value(String value) { this.value = value; return this; } public RelationRules build() { return new RelationRules(this); } } } /** * * {@link DescribeVariableBindDetailResponseBody} extends {@link TeaModel} * * <p>DescribeVariableBindDetailResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("allowModify") private Boolean allowModify; @com.aliyun.core.annotation.NameInMap("defineId") private Long defineId; @com.aliyun.core.annotation.NameInMap("defineTitle") private String defineTitle; @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("params") private java.util.List<Params> params; @com.aliyun.core.annotation.NameInMap("relationRules") private java.util.List<RelationRules> relationRules; @com.aliyun.core.annotation.NameInMap("title") private String title; private ResultObject(Builder builder) { this.allowModify = builder.allowModify; this.defineId = builder.defineId; this.defineTitle = builder.defineTitle; this.description = builder.description; this.eventCode = builder.eventCode; this.id = builder.id; this.params = builder.params; this.relationRules = builder.relationRules; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return allowModify */ public Boolean getAllowModify() { return this.allowModify; } /** * @return defineId */ public Long getDefineId() { return this.defineId; } /** * @return defineTitle */ public String getDefineTitle() { return this.defineTitle; } /** * @return description */ public String getDescription() { return this.description; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return id */ public Long getId() { return this.id; } /** * @return params */ public java.util.List<Params> getParams() { return this.params; } /** * @return relationRules */ public java.util.List<RelationRules> getRelationRules() { return this.relationRules; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder { private Boolean allowModify; private Long defineId; private String defineTitle; private String description; private String eventCode; private Long id; private java.util.List<Params> params; private java.util.List<RelationRules> relationRules; private String title; private Builder() { } private Builder(ResultObject model) { this.allowModify = model.allowModify; this.defineId = model.defineId; this.defineTitle = model.defineTitle; this.description = model.description; this.eventCode = model.eventCode; this.id = model.id; this.params = model.params; this.relationRules = model.relationRules; this.title = model.title; } /** * <p>Whether modification is allowed, default is false</p> * * <strong>example:</strong> * <p>false</p> */ public Builder allowModify(Boolean allowModify) { this.allowModify = allowModify; return this; } /** * <p>Variable definition ID</p> * * <strong>example:</strong> * <p>10</p> */ public Builder defineId(Long defineId) { this.defineId = defineId; return this; } /** * <p>Variable definition title</p> * * <strong>example:</strong> * <p>IP所在地_城市Code</p> */ public Builder defineTitle(String defineTitle) { this.defineTitle = defineTitle; return this; } /** * <p>Variable description information</p> * * <strong>example:</strong> * <p>描述</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Event code</p> * * <strong>example:</strong> * <p>de_aszbjb7236</p> */ public Builder eventCode(String eventCode) { this.eventCode = eventCode; return this; } /** * <p>Variable ID.</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Bound parameters.</p> */ public Builder params(java.util.List<Params> params) { this.params = params; return this; } /** * <p>List of associated policies</p> */ public Builder relationRules(java.util.List<RelationRules> relationRules) { this.relationRules = relationRules; return this; } /** * <p>Title.</p> * * <strong>example:</strong> * <p>变量title</p> */ public Builder title(String title) { this.title = title; 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/DescribeVariableDetailRequest.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 DescribeVariableDetailRequest} extends {@link RequestModel} * * <p>DescribeVariableDetailRequest</p> */ public class DescribeVariableDetailRequest 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") private String regId; private DescribeVariableDetailRequest(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 DescribeVariableDetailRequest 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<DescribeVariableDetailRequest, Builder> { private String lang; private Long id; private String regId; private Builder() { super(); } private Builder(DescribeVariableDetailRequest request) { super(request); this.lang = request.lang; this.id = request.id; 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>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> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeVariableDetailRequest build() { return new DescribeVariableDetailRequest(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/DescribeVariableDetailResponse.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 DescribeVariableDetailResponse} extends {@link TeaModel} * * <p>DescribeVariableDetailResponse</p> */ public class DescribeVariableDetailResponse 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 DescribeVariableDetailResponseBody body; private DescribeVariableDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeVariableDetailResponse 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 DescribeVariableDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeVariableDetailResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeVariableDetailResponseBody body); @Override DescribeVariableDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeVariableDetailResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeVariableDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeVariableDetailResponse 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(DescribeVariableDetailResponseBody body) { this.body = body; return this; } @Override public DescribeVariableDetailResponse build() { return new DescribeVariableDetailResponse(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/DescribeVariableDetailResponseBody.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 DescribeVariableDetailResponseBody} extends {@link TeaModel} * * <p>DescribeVariableDetailResponseBody</p> */ public class DescribeVariableDetailResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeVariableDetailResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeVariableDetailResponseBody 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(DescribeVariableDetailResponseBody 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 DescribeVariableDetailResponseBody build() { return new DescribeVariableDetailResponseBody(this); } } /** * * {@link DescribeVariableDetailResponseBody} extends {@link TeaModel} * * <p>DescribeVariableDetailResponseBody</p> */ public static class BaseInfo extends TeaModel { @com.aliyun.core.annotation.NameInMap("allowBind") private String allowBind; @com.aliyun.core.annotation.NameInMap("chargingMode") private String chargingMode; @com.aliyun.core.annotation.NameInMap("chargingModeDesc") private String chargingModeDesc; @com.aliyun.core.annotation.NameInMap("creator") private String creator; @com.aliyun.core.annotation.NameInMap("dataDisplay") private String dataDisplay; @com.aliyun.core.annotation.NameInMap("dataThreshold") private String dataThreshold; @com.aliyun.core.annotation.NameInMap("deductionFactor") private Integer deductionFactor; @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("frontAllowBind") private String frontAllowBind; @com.aliyun.core.annotation.NameInMap("gmtCreate") private Long gmtCreate; @com.aliyun.core.annotation.NameInMap("gmtModified") private Long gmtModified; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("inputRequired") private String inputRequired; @com.aliyun.core.annotation.NameInMap("inputs") private String inputs; @com.aliyun.core.annotation.NameInMap("inputsDesc") private String inputsDesc; @com.aliyun.core.annotation.NameInMap("invokeKey") private String invokeKey; @com.aliyun.core.annotation.NameInMap("invokeRt") private Integer invokeRt; @com.aliyun.core.annotation.NameInMap("invokeSuccessRate") private String invokeSuccessRate; @com.aliyun.core.annotation.NameInMap("invokeTimes") private Long invokeTimes; @com.aliyun.core.annotation.NameInMap("lastModifiedOperator") private String lastModifiedOperator; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("outputs") private String outputs; @com.aliyun.core.annotation.NameInMap("outputsDesc") private String outputsDesc; @com.aliyun.core.annotation.NameInMap("scene") private java.util.List<String> scene; @com.aliyun.core.annotation.NameInMap("sceneDesc") private java.util.List<String> sceneDesc; @com.aliyun.core.annotation.NameInMap("showOrder") private String showOrder; @com.aliyun.core.annotation.NameInMap("source") private String source; @com.aliyun.core.annotation.NameInMap("sourceDesc") private String sourceDesc; @com.aliyun.core.annotation.NameInMap("status") private String status; @com.aliyun.core.annotation.NameInMap("supportRegions") private java.util.List<String> supportRegions; @com.aliyun.core.annotation.NameInMap("title") private String title; @com.aliyun.core.annotation.NameInMap("type") private String type; @com.aliyun.core.annotation.NameInMap("typeDesc") private String typeDesc; @com.aliyun.core.annotation.NameInMap("xLabel") private String xLabel; @com.aliyun.core.annotation.NameInMap("yLabel") private String yLabel; private BaseInfo(Builder builder) { this.allowBind = builder.allowBind; this.chargingMode = builder.chargingMode; this.chargingModeDesc = builder.chargingModeDesc; this.creator = builder.creator; this.dataDisplay = builder.dataDisplay; this.dataThreshold = builder.dataThreshold; this.deductionFactor = builder.deductionFactor; this.description = builder.description; this.frontAllowBind = builder.frontAllowBind; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.id = builder.id; this.inputRequired = builder.inputRequired; this.inputs = builder.inputs; this.inputsDesc = builder.inputsDesc; this.invokeKey = builder.invokeKey; this.invokeRt = builder.invokeRt; this.invokeSuccessRate = builder.invokeSuccessRate; this.invokeTimes = builder.invokeTimes; this.lastModifiedOperator = builder.lastModifiedOperator; this.name = builder.name; this.outputs = builder.outputs; this.outputsDesc = builder.outputsDesc; this.scene = builder.scene; this.sceneDesc = builder.sceneDesc; this.showOrder = builder.showOrder; this.source = builder.source; this.sourceDesc = builder.sourceDesc; this.status = builder.status; this.supportRegions = builder.supportRegions; this.title = builder.title; this.type = builder.type; this.typeDesc = builder.typeDesc; this.xLabel = builder.xLabel; this.yLabel = builder.yLabel; } public static Builder builder() { return new Builder(); } public static BaseInfo create() { return builder().build(); } /** * @return allowBind */ public String getAllowBind() { return this.allowBind; } /** * @return chargingMode */ public String getChargingMode() { return this.chargingMode; } /** * @return chargingModeDesc */ public String getChargingModeDesc() { return this.chargingModeDesc; } /** * @return creator */ public String getCreator() { return this.creator; } /** * @return dataDisplay */ public String getDataDisplay() { return this.dataDisplay; } /** * @return dataThreshold */ public String getDataThreshold() { return this.dataThreshold; } /** * @return deductionFactor */ public Integer getDeductionFactor() { return this.deductionFactor; } /** * @return description */ public String getDescription() { return this.description; } /** * @return frontAllowBind */ public String getFrontAllowBind() { return this.frontAllowBind; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return gmtModified */ public Long getGmtModified() { return this.gmtModified; } /** * @return id */ public Long getId() { return this.id; } /** * @return inputRequired */ public String getInputRequired() { return this.inputRequired; } /** * @return inputs */ public String getInputs() { return this.inputs; } /** * @return inputsDesc */ public String getInputsDesc() { return this.inputsDesc; } /** * @return invokeKey */ public String getInvokeKey() { return this.invokeKey; } /** * @return invokeRt */ public Integer getInvokeRt() { return this.invokeRt; } /** * @return invokeSuccessRate */ public String getInvokeSuccessRate() { return this.invokeSuccessRate; } /** * @return invokeTimes */ public Long getInvokeTimes() { return this.invokeTimes; } /** * @return lastModifiedOperator */ public String getLastModifiedOperator() { return this.lastModifiedOperator; } /** * @return name */ public String getName() { return this.name; } /** * @return outputs */ public String getOutputs() { return this.outputs; } /** * @return outputsDesc */ public String getOutputsDesc() { return this.outputsDesc; } /** * @return scene */ public java.util.List<String> getScene() { return this.scene; } /** * @return sceneDesc */ public java.util.List<String> getSceneDesc() { return this.sceneDesc; } /** * @return showOrder */ public String getShowOrder() { return this.showOrder; } /** * @return source */ public String getSource() { return this.source; } /** * @return sourceDesc */ public String getSourceDesc() { return this.sourceDesc; } /** * @return status */ public String getStatus() { return this.status; } /** * @return supportRegions */ public java.util.List<String> getSupportRegions() { return this.supportRegions; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } /** * @return typeDesc */ public String getTypeDesc() { return this.typeDesc; } /** * @return xLabel */ public String getXLabel() { return this.xLabel; } /** * @return yLabel */ public String getYLabel() { return this.yLabel; } public static final class Builder { private String allowBind; private String chargingMode; private String chargingModeDesc; private String creator; private String dataDisplay; private String dataThreshold; private Integer deductionFactor; private String description; private String frontAllowBind; private Long gmtCreate; private Long gmtModified; private Long id; private String inputRequired; private String inputs; private String inputsDesc; private String invokeKey; private Integer invokeRt; private String invokeSuccessRate; private Long invokeTimes; private String lastModifiedOperator; private String name; private String outputs; private String outputsDesc; private java.util.List<String> scene; private java.util.List<String> sceneDesc; private String showOrder; private String source; private String sourceDesc; private String status; private java.util.List<String> supportRegions; private String title; private String type; private String typeDesc; private String xLabel; private String yLabel; private Builder() { } private Builder(BaseInfo model) { this.allowBind = model.allowBind; this.chargingMode = model.chargingMode; this.chargingModeDesc = model.chargingModeDesc; this.creator = model.creator; this.dataDisplay = model.dataDisplay; this.dataThreshold = model.dataThreshold; this.deductionFactor = model.deductionFactor; this.description = model.description; this.frontAllowBind = model.frontAllowBind; this.gmtCreate = model.gmtCreate; this.gmtModified = model.gmtModified; this.id = model.id; this.inputRequired = model.inputRequired; this.inputs = model.inputs; this.inputsDesc = model.inputsDesc; this.invokeKey = model.invokeKey; this.invokeRt = model.invokeRt; this.invokeSuccessRate = model.invokeSuccessRate; this.invokeTimes = model.invokeTimes; this.lastModifiedOperator = model.lastModifiedOperator; this.name = model.name; this.outputs = model.outputs; this.outputsDesc = model.outputsDesc; this.scene = model.scene; this.sceneDesc = model.sceneDesc; this.showOrder = model.showOrder; this.source = model.source; this.sourceDesc = model.sourceDesc; this.status = model.status; this.supportRegions = model.supportRegions; this.title = model.title; this.type = model.type; this.typeDesc = model.typeDesc; this.xLabel = model.xLabel; this.yLabel = model.yLabel; } /** * <p>Whether variable binding is allowed</p> * * <strong>example:</strong> * <p>ENABLE</p> */ public Builder allowBind(String allowBind) { this.allowBind = allowBind; return this; } /** * <p>Charging mode</p> * * <strong>example:</strong> * <p>FREE</p> */ public Builder chargingMode(String chargingMode) { this.chargingMode = chargingMode; return this; } /** * <p>Charging mode description</p> * * <strong>example:</strong> * <p>免费</p> */ public Builder chargingModeDesc(String chargingModeDesc) { this.chargingModeDesc = chargingModeDesc; return this; } /** * <p>Creator.</p> * * <strong>example:</strong> * <p>176020</p> */ public Builder creator(String creator) { this.creator = creator; return this; } /** * <p>Data distribution display, in JSON format</p> * * <strong>example:</strong> * <p>{}</p> */ public Builder dataDisplay(String dataDisplay) { this.dataDisplay = dataDisplay; return this; } /** * <p>Data valid range, left-closed and right-closed</p> * * <strong>example:</strong> * <p>(0,10)</p> */ public Builder dataThreshold(String dataThreshold) { this.dataThreshold = dataThreshold; return this; } /** * <p>Deduction factor</p> * * <strong>example:</strong> * <p>10</p> */ public Builder deductionFactor(Integer deductionFactor) { this.deductionFactor = deductionFactor; return this; } /** * <p>Description.</p> * * <strong>example:</strong> * <p>描述</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Front-end binding allowed</p> * * <strong>example:</strong> * <p>ENABLE</p> */ public Builder frontAllowBind(String frontAllowBind) { this.frontAllowBind = frontAllowBind; return this; } /** * <p>Creation time.</p> * * <strong>example:</strong> * <p>1698143758000</p> */ public Builder gmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * <p>Modification time.</p> * * <strong>example:</strong> * <p>1698143758000</p> */ public Builder gmtModified(Long gmtModified) { this.gmtModified = gmtModified; return this; } /** * <p>Primary key ID</p> * * <strong>example:</strong> * <p>3144</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Required parameters</p> * <pre><code> When inputRequired=__all__, it means all parameters are required * When inputRequired=__one__, it means only one input is needed * Required fields are separated by commas, e.g., mobile,ip,email * </code></pre> * * <strong>example:</strong> * <p><strong>one</strong></p> */ public Builder inputRequired(String inputRequired) { this.inputRequired = inputRequired; return this; } /** * <p>Input parameters.</p> * * <strong>example:</strong> * <p>ip,age,mobile</p> */ public Builder inputs(String inputs) { this.inputs = inputs; return this; } /** * <p>Input parameter description.</p> * * <strong>example:</strong> * <p>ip,年龄,手机号</p> */ public Builder inputsDesc(String inputsDesc) { this.inputsDesc = inputsDesc; return this; } /** * <p>Invoke key</p> * * <strong>example:</strong> * <p>onlineScamDetectionTags_v</p> */ public Builder invokeKey(String invokeKey) { this.invokeKey = invokeKey; return this; } /** * <p>Invoke RT, unit: milliseconds</p> * * <strong>example:</strong> * <p>10</p> */ public Builder invokeRt(Integer invokeRt) { this.invokeRt = invokeRt; return this; } /** * <p>Invocation success rate</p> * * <strong>example:</strong> * <p>100</p> */ public Builder invokeSuccessRate(String invokeSuccessRate) { this.invokeSuccessRate = invokeSuccessRate; return this; } /** * <p>Number of invocations</p> * * <strong>example:</strong> * <p>100000</p> */ public Builder invokeTimes(Long invokeTimes) { this.invokeTimes = invokeTimes; return this; } /** * <p>Last modifier.</p> * * <strong>example:</strong> * <p>root</p> */ public Builder lastModifiedOperator(String lastModifiedOperator) { this.lastModifiedOperator = lastModifiedOperator; return this; } /** * <p>Variable name</p> * * <strong>example:</strong> * <p><strong>onlineScamDetectionTags</strong></p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Output</p> * * <strong>example:</strong> * <p>STRING</p> */ public Builder outputs(String outputs) { this.outputs = outputs; return this; } /** * <p>Output description</p> * * <strong>example:</strong> * <p>字符串</p> */ public Builder outputsDesc(String outputsDesc) { this.outputsDesc = outputsDesc; return this; } /** * <p>Code of applicable scenarios</p> */ public Builder scene(java.util.List<String> scene) { this.scene = scene; return this; } /** * <p>Applicable scenario description</p> */ public Builder sceneDesc(java.util.List<String> sceneDesc) { this.sceneDesc = sceneDesc; return this; } /** * <p>Display order</p> * * <strong>example:</strong> * <p>10</p> */ public Builder showOrder(String showOrder) { this.showOrder = showOrder; return this; } /** * <p>Source</p> * * <strong>example:</strong> * <p>SAF</p> */ public Builder source(String source) { this.source = source; return this; } /** * <p>Source description</p> * * <strong>example:</strong> * <p>风险识别</p> */ public Builder sourceDesc(String sourceDesc) { this.sourceDesc = sourceDesc; return this; } /** * <p>Status.</p> * * <strong>example:</strong> * <p>ENABLE</p> */ public Builder status(String status) { this.status = status; return this; } /** * <p>List of supported regions.</p> */ public Builder supportRegions(java.util.List<String> supportRegions) { this.supportRegions = supportRegions; return this; } /** * <p>Title.</p> * * <strong>example:</strong> * <p>诈骗引流识别_标签</p> */ public Builder title(String title) { this.title = title; return this; } /** * <p>Type</p> * * <strong>example:</strong> * <p>NATIVE</p> */ public Builder type(String type) { this.type = type; return this; } /** * <p>Category description</p> * * <strong>example:</strong> * <p>事件字段</p> */ public Builder typeDesc(String typeDesc) { this.typeDesc = typeDesc; return this; } /** * <p>X-axis label for data distribution display</p> * * <strong>example:</strong> * <p>10</p> */ public Builder xLabel(String xLabel) { this.xLabel = xLabel; return this; } /** * <p>Data distribution display y-axis label</p> * * <strong>example:</strong> * <p>10</p> */ public Builder yLabel(String yLabel) { this.yLabel = yLabel; return this; } public BaseInfo build() { return new BaseInfo(this); } } } /** * * {@link DescribeVariableDetailResponseBody} extends {@link TeaModel} * * <p>DescribeVariableDetailResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("baseInfo") private BaseInfo baseInfo; private ResultObject(Builder builder) { this.baseInfo = builder.baseInfo; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return baseInfo */ public BaseInfo getBaseInfo() { return this.baseInfo; } public static final class Builder { private BaseInfo baseInfo; private Builder() { } private Builder(ResultObject model) { this.baseInfo = model.baseInfo; } /** * <p>Basic attributes.</p> */ public Builder baseInfo(BaseInfo baseInfo) { this.baseInfo = baseInfo; 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/DescribeVariableFeeRequest.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 DescribeVariableFeeRequest} extends {@link RequestModel} * * <p>DescribeVariableFeeRequest</p> */ public class DescribeVariableFeeRequest 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") @com.aliyun.core.annotation.Validation(required = true) private java.util.List<Long> ids; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeVariableFeeRequest(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 DescribeVariableFeeRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return ids */ public java.util.List<Long> getIds() { return this.ids; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeVariableFeeRequest, Builder> { private String lang; private java.util.List<Long> ids; private String regId; private Builder() { super(); } private Builder(DescribeVariableFeeRequest 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>Variable ID</p> * <p>This parameter is required.</p> */ public Builder ids(java.util.List<Long> 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 DescribeVariableFeeRequest build() { return new DescribeVariableFeeRequest(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/DescribeVariableFeeResponse.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 DescribeVariableFeeResponse} extends {@link TeaModel} * * <p>DescribeVariableFeeResponse</p> */ public class DescribeVariableFeeResponse 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 DescribeVariableFeeResponseBody body; private DescribeVariableFeeResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeVariableFeeResponse 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 DescribeVariableFeeResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeVariableFeeResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeVariableFeeResponseBody body); @Override DescribeVariableFeeResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeVariableFeeResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeVariableFeeResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeVariableFeeResponse 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(DescribeVariableFeeResponseBody body) { this.body = body; return this; } @Override public DescribeVariableFeeResponse build() { return new DescribeVariableFeeResponse(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/DescribeVariableFeeResponseBody.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 DescribeVariableFeeResponseBody} extends {@link TeaModel} * * <p>DescribeVariableFeeResponseBody</p> */ public class DescribeVariableFeeResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeVariableFeeResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeVariableFeeResponseBody 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(DescribeVariableFeeResponseBody 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 DescribeVariableFeeResponseBody build() { return new DescribeVariableFeeResponseBody(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/DescribeVariableListRequest.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 DescribeVariableListRequest} extends {@link RequestModel} * * <p>DescribeVariableListRequest</p> */ public class DescribeVariableListRequest 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("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("refObjId") private String refObjId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("sourceType") private String sourceType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("type") private String type; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("typesStr") private String typesStr; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("value") private String value; private DescribeVariableListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.createType = builder.createType; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.refObjId = builder.refObjId; this.regId = builder.regId; this.sourceType = builder.sourceType; this.type = builder.type; this.typesStr = builder.typesStr; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static DescribeVariableListRequest 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 currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return refObjId */ public String getRefObjId() { return this.refObjId; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return sourceType */ public String getSourceType() { return this.sourceType; } /** * @return type */ public String getType() { return this.type; } /** * @return typesStr */ public String getTypesStr() { return this.typesStr; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder extends Request.Builder<DescribeVariableListRequest, Builder> { private String lang; private String createType; private String currentPage; private String pageSize; private String refObjId; private String regId; private String sourceType; private String type; private String typesStr; private String value; private Builder() { super(); } private Builder(DescribeVariableListRequest request) { super(request); this.lang = request.lang; this.createType = request.createType; this.currentPage = request.currentPage; this.pageSize = request.pageSize; this.refObjId = request.refObjId; this.regId = request.regId; this.sourceType = request.sourceType; this.type = request.type; this.typesStr = request.typesStr; this.value = request.value; } /** * <p>Set the language type for requests and responses, 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>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>Page size, 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>Associated event ID.</p> * * <strong>example:</strong> * <p>de_avypfd8253</p> */ public Builder refObjId(String refObjId) { this.putQueryParameter("refObjId", refObjId); this.refObjId = refObjId; 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 type.</p> * * <strong>example:</strong> * <p>SAF</p> */ public Builder sourceType(String sourceType) { this.putQueryParameter("sourceType", sourceType); this.sourceType = sourceType; return this; } /** * <p>Type.</p> * * <strong>example:</strong> * <p>IDENTIFY_SERVICE</p> */ public Builder type(String type) { this.putQueryParameter("type", type); this.type = type; return this; } /** * <p>JSON array string of types.</p> * * <strong>example:</strong> * <p>[&quot;coupon_abuse_detection&quot;]</p> */ public Builder typesStr(String typesStr) { this.putQueryParameter("typesStr", typesStr); this.typesStr = typesStr; return this; } /** * <p>Value for fuzzy search.</p> * * <strong>example:</strong> * <p>注册</p> */ public Builder value(String value) { this.putQueryParameter("value", value); this.value = value; return this; } @Override public DescribeVariableListRequest build() { return new DescribeVariableListRequest(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/DescribeVariableListResponse.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 DescribeVariableListResponse} extends {@link TeaModel} * * <p>DescribeVariableListResponse</p> */ public class DescribeVariableListResponse 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 DescribeVariableListResponseBody body; private DescribeVariableListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeVariableListResponse 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 DescribeVariableListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeVariableListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeVariableListResponseBody body); @Override DescribeVariableListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeVariableListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeVariableListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeVariableListResponse 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(DescribeVariableListResponseBody body) { this.body = body; return this; } @Override public DescribeVariableListResponse build() { return new DescribeVariableListResponse(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/DescribeVariableListResponseBody.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 DescribeVariableListResponseBody} extends {@link TeaModel} * * <p>DescribeVariableListResponseBody</p> */ public class DescribeVariableListResponseBody 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 DescribeVariableListResponseBody(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 DescribeVariableListResponseBody 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(DescribeVariableListResponseBody 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>A32FE941-35F2-5378-B37C-4B8FDB16F094</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>Page size, 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>27</p> */ public Builder totalItem(Integer totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>3</p> */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } public DescribeVariableListResponseBody build() { return new DescribeVariableListResponseBody(this); } } /** * * {@link DescribeVariableListResponseBody} extends {@link TeaModel} * * <p>DescribeVariableListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("capacity") private Long capacity; @com.aliyun.core.annotation.NameInMap("defineId") private String defineId; @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("extendInfo") private java.util.Map<String, ?> extendInfo; @com.aliyun.core.annotation.NameInMap("gmtCreate") private Long gmtCreate; @com.aliyun.core.annotation.NameInMap("gmtModified") private Long gmtModified; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("leftCapacity") private Long leftCapacity; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("outputsType") private String outputsType; @com.aliyun.core.annotation.NameInMap("refObjId") private String refObjId; @com.aliyun.core.annotation.NameInMap("refObjName") private String refObjName; @com.aliyun.core.annotation.NameInMap("refObjType") private String refObjType; @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; @com.aliyun.core.annotation.NameInMap("userId") private Long userId; private ResultObject(Builder builder) { this.capacity = builder.capacity; this.defineId = builder.defineId; this.description = builder.description; this.extendInfo = builder.extendInfo; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.id = builder.id; this.leftCapacity = builder.leftCapacity; this.name = builder.name; this.outputsType = builder.outputsType; this.refObjId = builder.refObjId; this.refObjName = builder.refObjName; this.refObjType = builder.refObjType; this.sourceType = builder.sourceType; this.title = builder.title; this.type = builder.type; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return capacity */ public Long getCapacity() { return this.capacity; } /** * @return defineId */ public String getDefineId() { return this.defineId; } /** * @return description */ public String getDescription() { return this.description; } /** * @return extendInfo */ public java.util.Map<String, ?> getExtendInfo() { return this.extendInfo; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return gmtModified */ public Long getGmtModified() { return this.gmtModified; } /** * @return id */ public Long getId() { return this.id; } /** * @return leftCapacity */ public Long getLeftCapacity() { return this.leftCapacity; } /** * @return name */ public String getName() { return this.name; } /** * @return outputsType */ public String getOutputsType() { return this.outputsType; } /** * @return refObjId */ public String getRefObjId() { return this.refObjId; } /** * @return refObjName */ public String getRefObjName() { return this.refObjName; } /** * @return refObjType */ public String getRefObjType() { return this.refObjType; } /** * @return sourceType */ public String getSourceType() { return this.sourceType; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } /** * @return userId */ public Long getUserId() { return this.userId; } public static final class Builder { private Long capacity; private String defineId; private String description; private java.util.Map<String, ?> extendInfo; private Long gmtCreate; private Long gmtModified; private Long id; private Long leftCapacity; private String name; private String outputsType; private String refObjId; private String refObjName; private String refObjType; private String sourceType; private String title; private String type; private Long userId; private Builder() { } private Builder(ResultObject model) { this.capacity = model.capacity; this.defineId = model.defineId; this.description = model.description; this.extendInfo = model.extendInfo; this.gmtCreate = model.gmtCreate; this.gmtModified = model.gmtModified; this.id = model.id; this.leftCapacity = model.leftCapacity; this.name = model.name; this.outputsType = model.outputsType; this.refObjId = model.refObjId; this.refObjName = model.refObjName; this.refObjType = model.refObjType; this.sourceType = model.sourceType; this.title = model.title; this.type = model.type; this.userId = model.userId; } /** * <p>Capacity.</p> * * <strong>example:</strong> * <p>100000</p> */ public Builder capacity(Long capacity) { this.capacity = capacity; return this; } /** * <p>Variable definition ID.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder defineId(String defineId) { this.defineId = defineId; return this; } /** * <p>Description information.</p> * * <strong>example:</strong> * <p>变量描述</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Extended information.</p> * * <strong>example:</strong> * <p>暂无</p> */ public Builder extendInfo(java.util.Map<String, ?> extendInfo) { this.extendInfo = extendInfo; return this; } /** * <p>Creation time.</p> * * <strong>example:</strong> * <p>1621578648000</p> */ public Builder gmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * <p>Modification time.</p> * * <strong>example:</strong> * <p>1565701886000</p> */ public Builder gmtModified(Long gmtModified) { this.gmtModified = gmtModified; return this; } /** * <p>Variable ID.</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Remaining capacity.</p> * * <strong>example:</strong> * <p>100000</p> */ public Builder leftCapacity(Long leftCapacity) { this.leftCapacity = leftCapacity; return this; } /** * <p>Variable name</p> * * <strong>example:</strong> * <p><strong>ipLocationCityCode</strong></p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Variable output type</p> * * <strong>example:</strong> * <p>STRING</p> */ public Builder outputsType(String outputsType) { this.outputsType = outputsType; return this; } /** * <p>Associated event ID.</p> * * <strong>example:</strong> * <p>de_agdxgz0246</p> */ public Builder refObjId(String refObjId) { this.refObjId = refObjId; return this; } /** * <p>Associated event name.</p> * * <strong>example:</strong> * <p>注册事件</p> */ public Builder refObjName(String refObjName) { this.refObjName = refObjName; return this; } /** * <p>Associated object type of the variable</p> * * <strong>example:</strong> * <p>EVENT</p> */ public Builder refObjType(String refObjType) { this.refObjType = refObjType; return this; } /** * <p>Source type.</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; } /** * <p>User ID to which the data belongs.</p> * * <strong>example:</strong> * <p>100000</p> */ public Builder userId(Long userId) { this.userId = userId; 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/DescribeVariableMarketListRequest.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 DescribeVariableMarketListRequest} extends {@link RequestModel} * * <p>DescribeVariableMarketListRequest</p> */ public class DescribeVariableMarketListRequest 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("chargingMode") private String chargingMode; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("currentPage") private Integer currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") private Integer pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("paging") private String paging; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("queryContent") private String queryContent; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("scenesStr") private String scenesStr; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("source") private String source; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("title") private String title; private DescribeVariableMarketListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.chargingMode = builder.chargingMode; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.paging = builder.paging; this.queryContent = builder.queryContent; this.regId = builder.regId; this.scenesStr = builder.scenesStr; this.source = builder.source; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static DescribeVariableMarketListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return chargingMode */ public String getChargingMode() { return this.chargingMode; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return paging */ public String getPaging() { return this.paging; } /** * @return queryContent */ public String getQueryContent() { return this.queryContent; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return scenesStr */ public String getScenesStr() { return this.scenesStr; } /** * @return source */ public String getSource() { return this.source; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder extends Request.Builder<DescribeVariableMarketListRequest, Builder> { private String lang; private String chargingMode; private Integer currentPage; private Integer pageSize; private String paging; private String queryContent; private String regId; private String scenesStr; private String source; private String title; private Builder() { super(); } private Builder(DescribeVariableMarketListRequest request) { super(request); this.lang = request.lang; this.chargingMode = request.chargingMode; this.currentPage = request.currentPage; this.pageSize = request.pageSize; this.paging = request.paging; this.queryContent = request.queryContent; this.regId = request.regId; this.scenesStr = request.scenesStr; this.source = request.source; this.title = request.title; } /** * <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>Charging mode</p> * * <strong>example:</strong> * <p>FREE</p> */ public Builder chargingMode(String chargingMode) { this.putQueryParameter("chargingMode", chargingMode); this.chargingMode = chargingMode; return this; } /** * <p>Current page number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("currentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Page size, with a default value of 10.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("pageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>Paging indicator, default is true.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder paging(String paging) { this.putQueryParameter("paging", paging); this.paging = paging; return this; } /** * <p>Query content, supports fuzzy search.</p> * <p> Title/Description</p> * * <strong>example:</strong> * <p>手机号</p> */ public Builder queryContent(String queryContent) { this.putQueryParameter("queryContent", queryContent); this.queryContent = queryContent; 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>Scenario</p> * * <strong>example:</strong> * <p>[&quot;coupon_abuse_detection&quot;]</p> */ public Builder scenesStr(String scenesStr) { this.putQueryParameter("scenesStr", scenesStr); this.scenesStr = scenesStr; return this; } /** * <p>Source</p> * * <strong>example:</strong> * <p>SAF</p> */ public Builder source(String source) { this.putQueryParameter("source", source); this.source = source; return this; } /** * <p>Title.</p> * * <strong>example:</strong> * <p>设备风险识别_标签</p> */ public Builder title(String title) { this.putQueryParameter("title", title); this.title = title; return this; } @Override public DescribeVariableMarketListRequest build() { return new DescribeVariableMarketListRequest(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/DescribeVariableMarketListResponse.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 DescribeVariableMarketListResponse} extends {@link TeaModel} * * <p>DescribeVariableMarketListResponse</p> */ public class DescribeVariableMarketListResponse 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 DescribeVariableMarketListResponseBody body; private DescribeVariableMarketListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeVariableMarketListResponse 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 DescribeVariableMarketListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeVariableMarketListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeVariableMarketListResponseBody body); @Override DescribeVariableMarketListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeVariableMarketListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeVariableMarketListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeVariableMarketListResponse 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(DescribeVariableMarketListResponseBody body) { this.body = body; return this; } @Override public DescribeVariableMarketListResponse build() { return new DescribeVariableMarketListResponse(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/DescribeVariableMarketListResponseBody.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 DescribeVariableMarketListResponseBody} extends {@link TeaModel} * * <p>DescribeVariableMarketListResponseBody</p> */ public class DescribeVariableMarketListResponseBody 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 Boolean resultObject; @com.aliyun.core.annotation.NameInMap("totalItem") private Integer totalItem; @com.aliyun.core.annotation.NameInMap("totalPage") private Integer totalPage; private DescribeVariableMarketListResponseBody(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 DescribeVariableMarketListResponseBody 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 Boolean 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 Boolean resultObject; private Integer totalItem; private Integer totalPage; private Builder() { } private Builder(DescribeVariableMarketListResponseBody 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>A32FE941-35F2-5378-B37C-4B8FDB16F094</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>Page size, with a default value of 10.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } /** * <p>Total number of items</p> * * <strong>example:</strong> * <p>6</p> */ public Builder totalItem(Integer totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total number of pages</p> * * <strong>example:</strong> * <p>9</p> */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } public DescribeVariableMarketListResponseBody build() { return new DescribeVariableMarketListResponseBody(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/DescribeVariableSceneListRequest.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 DescribeVariableSceneListRequest} extends {@link RequestModel} * * <p>DescribeVariableSceneListRequest</p> */ public class DescribeVariableSceneListRequest 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("bizType") @com.aliyun.core.annotation.Validation(required = true) private String bizType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("configKey") private String configKey; @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("paging") @com.aliyun.core.annotation.Validation(required = true) private Boolean paging; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeVariableSceneListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.bizType = builder.bizType; this.configKey = builder.configKey; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.paging = builder.paging; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeVariableSceneListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return bizType */ public String getBizType() { return this.bizType; } /** * @return configKey */ public String getConfigKey() { return this.configKey; } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return paging */ public Boolean getPaging() { return this.paging; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeVariableSceneListRequest, Builder> { private String lang; private String bizType; private String configKey; private String currentPage; private String pageSize; private Boolean paging; private String regId; private Builder() { super(); } private Builder(DescribeVariableSceneListRequest request) { super(request); this.lang = request.lang; this.bizType = request.bizType; this.configKey = request.configKey; this.currentPage = request.currentPage; this.pageSize = request.pageSize; this.paging = request.paging; 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>Business type.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>variable_scene</p> */ public Builder bizType(String bizType) { this.putQueryParameter("bizType", bizType); this.bizType = bizType; return this; } /** * <p>Configuration key.</p> * * <strong>example:</strong> * <p>account_abuse_detection</p> */ public Builder configKey(String configKey) { this.putQueryParameter("configKey", configKey); this.configKey = configKey; 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>Page size, 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>Paging flag, default is true.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder paging(Boolean paging) { this.putQueryParameter("paging", paging); this.paging = paging; 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 DescribeVariableSceneListRequest build() { return new DescribeVariableSceneListRequest(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/DescribeVariableSceneListResponse.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 DescribeVariableSceneListResponse} extends {@link TeaModel} * * <p>DescribeVariableSceneListResponse</p> */ public class DescribeVariableSceneListResponse 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 DescribeVariableSceneListResponseBody body; private DescribeVariableSceneListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeVariableSceneListResponse 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 DescribeVariableSceneListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeVariableSceneListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeVariableSceneListResponseBody body); @Override DescribeVariableSceneListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeVariableSceneListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeVariableSceneListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeVariableSceneListResponse 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(DescribeVariableSceneListResponseBody body) { this.body = body; return this; } @Override public DescribeVariableSceneListResponse build() { return new DescribeVariableSceneListResponse(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/DescribeVariableSceneListResponseBody.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 DescribeVariableSceneListResponseBody} extends {@link TeaModel} * * <p>DescribeVariableSceneListResponseBody</p> */ public class DescribeVariableSceneListResponseBody 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 DescribeVariableSceneListResponseBody(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 DescribeVariableSceneListResponseBody 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(DescribeVariableSceneListResponseBody 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>A32FE941-35F2-5378-B37C-4B8FDB16F094</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>Page size, 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>6</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 DescribeVariableSceneListResponseBody build() { return new DescribeVariableSceneListResponseBody(this); } } /** * * {@link DescribeVariableSceneListResponseBody} extends {@link TeaModel} * * <p>DescribeVariableSceneListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("bizType") private String bizType; @com.aliyun.core.annotation.NameInMap("configKey") private String configKey; @com.aliyun.core.annotation.NameInMap("configValue") private String configValue; @com.aliyun.core.annotation.NameInMap("creator") private String creator; @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("gmtCreate") private Long gmtCreate; @com.aliyun.core.annotation.NameInMap("gmtModified") private Long gmtModified; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("lastModifiedOperator") private String lastModifiedOperator; @com.aliyun.core.annotation.NameInMap("status") private String status; private ResultObject(Builder builder) { this.bizType = builder.bizType; this.configKey = builder.configKey; this.configValue = builder.configValue; this.creator = builder.creator; this.description = builder.description; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.id = builder.id; this.lastModifiedOperator = builder.lastModifiedOperator; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return bizType */ public String getBizType() { return this.bizType; } /** * @return configKey */ public String getConfigKey() { return this.configKey; } /** * @return configValue */ public String getConfigValue() { return this.configValue; } /** * @return creator */ public String getCreator() { return this.creator; } /** * @return description */ public String getDescription() { return this.description; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return gmtModified */ public Long getGmtModified() { return this.gmtModified; } /** * @return id */ public Long getId() { return this.id; } /** * @return lastModifiedOperator */ public String getLastModifiedOperator() { return this.lastModifiedOperator; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder { private String bizType; private String configKey; private String configValue; private String creator; private String description; private Long gmtCreate; private Long gmtModified; private Long id; private String lastModifiedOperator; private String status; private Builder() { } private Builder(ResultObject model) { this.bizType = model.bizType; this.configKey = model.configKey; this.configValue = model.configValue; this.creator = model.creator; this.description = model.description; this.gmtCreate = model.gmtCreate; this.gmtModified = model.gmtModified; this.id = model.id; this.lastModifiedOperator = model.lastModifiedOperator; this.status = model.status; } /** * <p>Business category identifier.</p> * * <strong>example:</strong> * <p>variable_scene</p> */ public Builder bizType(String bizType) { this.bizType = bizType; return this; } /** * <p>Configuration key.</p> * * <strong>example:</strong> * <p>account_abuse_detection</p> */ public Builder configKey(String configKey) { this.configKey = configKey; return this; } /** * <p>Configuration value.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder configValue(String configValue) { this.configValue = configValue; return this; } /** * <p>Created by.</p> * * <strong>example:</strong> * <p>1519714049632764</p> */ public Builder creator(String creator) { this.creator = creator; return this; } /** * <p>Description information.</p> * * <strong>example:</strong> * <p>配置描述信息</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Creation time.</p> * * <strong>example:</strong> * <p>1621578648000</p> */ public Builder gmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * <p>Modification time.</p> * * <strong>example:</strong> * <p>1565701886000</p> */ public Builder gmtModified(Long gmtModified) { this.gmtModified = gmtModified; return this; } /** * <p>Primary key ID of the configuration.</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Last modified by.</p> * * <strong>example:</strong> * <p>1519714049632764</p> */ public Builder lastModifiedOperator(String lastModifiedOperator) { this.lastModifiedOperator = lastModifiedOperator; return this; } /** * <p>Status.</p> * * <strong>example:</strong> * <p>ENABLE</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/DescribeVersionPageListRequest.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 DescribeVersionPageListRequest} extends {@link RequestModel} * * <p>DescribeVersionPageListRequest</p> */ public class DescribeVersionPageListRequest 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("MaxResults") private Integer maxResults; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("NextToken") private String nextToken; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("currentPage") private Integer currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("objectCode") private String objectCode; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("objectId") private Long objectId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") private Integer pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("paging") private Boolean paging; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("type") private String type; private DescribeVersionPageListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.maxResults = builder.maxResults; this.nextToken = builder.nextToken; this.currentPage = builder.currentPage; this.objectCode = builder.objectCode; this.objectId = builder.objectId; this.pageSize = builder.pageSize; this.paging = builder.paging; this.regId = builder.regId; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static DescribeVersionPageListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return maxResults */ public Integer getMaxResults() { return this.maxResults; } /** * @return nextToken */ public String getNextToken() { return this.nextToken; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return objectCode */ public String getObjectCode() { return this.objectCode; } /** * @return objectId */ public Long getObjectId() { return this.objectId; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return paging */ public Boolean getPaging() { return this.paging; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return type */ public String getType() { return this.type; } public static final class Builder extends Request.Builder<DescribeVersionPageListRequest, Builder> { private String lang; private Integer maxResults; private String nextToken; private Integer currentPage; private String objectCode; private Long objectId; private Integer pageSize; private Boolean paging; private String regId; private String type; private Builder() { super(); } private Builder(DescribeVersionPageListRequest request) { super(request); this.lang = request.lang; this.maxResults = request.maxResults; this.nextToken = request.nextToken; this.currentPage = request.currentPage; this.objectCode = request.objectCode; this.objectId = request.objectId; this.pageSize = request.pageSize; this.paging = request.paging; this.regId = request.regId; this.type = request.type; } /** * <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>Maximum number of results to be read in this call, with a default value of 10.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder maxResults(Integer maxResults) { this.putQueryParameter("MaxResults", maxResults); this.maxResults = maxResults; return this; } /** * <p>Used to mark the starting position for reading. An empty value indicates starting from the beginning.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder nextToken(String nextToken) { this.putQueryParameter("NextToken", nextToken); this.nextToken = nextToken; return this; } /** * <p>Current page number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("currentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Name of the variable.</p> * * <strong>example:</strong> * <p>ex_OERlw0Zqfb23</p> */ public Builder objectCode(String objectCode) { this.putQueryParameter("objectCode", objectCode); this.objectCode = objectCode; return this; } /** * <p>Primary key ID of the variable.</p> * * <strong>example:</strong> * <p>392023</p> */ public Builder objectId(Long objectId) { this.putQueryParameter("objectId", objectId); this.objectId = objectId; return this; } /** * <p>Number of items per page, with a default value of 10.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("pageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>Pagination flag, with a default value of true.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder paging(Boolean paging) { this.putQueryParameter("paging", paging); this.paging = paging; 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>Type.</p> * * <strong>example:</strong> * <p>EXPRESSION</p> */ public Builder type(String type) { this.putQueryParameter("type", type); this.type = type; return this; } @Override public DescribeVersionPageListRequest build() { return new DescribeVersionPageListRequest(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/DescribeVersionPageListResponse.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 DescribeVersionPageListResponse} extends {@link TeaModel} * * <p>DescribeVersionPageListResponse</p> */ public class DescribeVersionPageListResponse 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 DescribeVersionPageListResponseBody body; private DescribeVersionPageListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeVersionPageListResponse 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 DescribeVersionPageListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeVersionPageListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeVersionPageListResponseBody body); @Override DescribeVersionPageListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeVersionPageListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeVersionPageListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeVersionPageListResponse 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(DescribeVersionPageListResponseBody body) { this.body = body; return this; } @Override public DescribeVersionPageListResponse build() { return new DescribeVersionPageListResponse(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/DescribeVersionPageListResponseBody.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 DescribeVersionPageListResponseBody} extends {@link TeaModel} * * <p>DescribeVersionPageListResponseBody</p> */ public class DescribeVersionPageListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("MaxResults") private Integer maxResults; @com.aliyun.core.annotation.NameInMap("NextToken") private String nextToken; @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 DescribeVersionPageListResponseBody(Builder builder) { this.maxResults = builder.maxResults; this.nextToken = builder.nextToken; 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 DescribeVersionPageListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return maxResults */ public Integer getMaxResults() { return this.maxResults; } /** * @return nextToken */ public String getNextToken() { return this.nextToken; } /** * @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 Integer maxResults; private String nextToken; 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(DescribeVersionPageListResponseBody model) { this.maxResults = model.maxResults; this.nextToken = model.nextToken; 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>The maximum amount of data to be read in this call, with a default value of 10.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder maxResults(Integer maxResults) { this.maxResults = maxResults; return this; } /** * <p>用来表示当前调用返回读取到的位置。空代表数据已经读取完毕。</p> * * <strong>example:</strong> * <p>1</p> */ public Builder nextToken(String nextToken) { this.nextToken = nextToken; return this; } /** * <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>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, with a default value of 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>10</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 DescribeVersionPageListResponseBody build() { return new DescribeVersionPageListResponseBody(this); } } /** * * {@link DescribeVersionPageListResponseBody} extends {@link TeaModel} * * <p>DescribeVersionPageListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("content") private String content; @com.aliyun.core.annotation.NameInMap("creator") private String creator; @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("gmtCreate") private Long gmtCreate; @com.aliyun.core.annotation.NameInMap("gmtModified") private Long gmtModified; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("modifier") private String modifier; @com.aliyun.core.annotation.NameInMap("objectCode") private String objectCode; @com.aliyun.core.annotation.NameInMap("objectId") private Long objectId; @com.aliyun.core.annotation.NameInMap("region") private String region; @com.aliyun.core.annotation.NameInMap("type") private String type; @com.aliyun.core.annotation.NameInMap("userId") private Long userId; @com.aliyun.core.annotation.NameInMap("version") private Long version; private ResultObject(Builder builder) { this.content = builder.content; this.creator = builder.creator; this.description = builder.description; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.id = builder.id; this.modifier = builder.modifier; this.objectCode = builder.objectCode; this.objectId = builder.objectId; this.region = builder.region; this.type = builder.type; this.userId = builder.userId; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return content */ public String getContent() { return this.content; } /** * @return creator */ public String getCreator() { return this.creator; } /** * @return description */ public String getDescription() { return this.description; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return gmtModified */ public Long getGmtModified() { return this.gmtModified; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifier */ public String getModifier() { return this.modifier; } /** * @return objectCode */ public String getObjectCode() { return this.objectCode; } /** * @return objectId */ public Long getObjectId() { return this.objectId; } /** * @return region */ public String getRegion() { return this.region; } /** * @return type */ public String getType() { return this.type; } /** * @return userId */ public Long getUserId() { return this.userId; } /** * @return version */ public Long getVersion() { return this.version; } public static final class Builder { private String content; private String creator; private String description; private Long gmtCreate; private Long gmtModified; private Long id; private String modifier; private String objectCode; private Long objectId; private String region; private String type; private Long userId; private Long version; private Builder() { } private Builder(ResultObject model) { this.content = model.content; this.creator = model.creator; this.description = model.description; this.gmtCreate = model.gmtCreate; this.gmtModified = model.gmtModified; this.id = model.id; this.modifier = model.modifier; this.objectCode = model.objectCode; this.objectId = model.objectId; this.region = model.region; this.type = model.type; this.userId = model.userId; this.version = model.version; } /** * <p>Change content.</p> * * <strong>example:</strong> * <p>{&quot;description&quot;:&quot;自定义变量&quot;,&quot;expression&quot;:&quot;1&quot;,&quot;expressionTitle&quot;:&quot;1&quot;,&quot;expressionVariable&quot;:&quot;&quot;,&quot;fieldRank&quot;:0,&quot;id&quot;:392023,&quot;name&quot;:&quot;ex_OERlw0Zqfb23&quot;,&quot;outlier&quot;:&quot;SYS_ERROR&quot;,&quot;outputs&quot;:&quot;STRING&quot;,&quot;refObjId&quot;:&quot;de_auevox0336&quot;,&quot;region&quot;:&quot;SH&quot;,&quot;title&quot;:&quot;自定义变量&quot;,&quot;version&quot;:4}</p> */ public Builder content(String content) { this.content = content; return this; } /** * <p>Creator.</p> * * <strong>example:</strong> * <p>root</p> */ public Builder creator(String creator) { this.creator = creator; return this; } /** * <p>Variable description.</p> * * <strong>example:</strong> * <p>变量描述</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Creation time.</p> * * <strong>example:</strong> * <p>1621578648000</p> */ public Builder gmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * <p>Modification time.</p> * * <strong>example:</strong> * <p>1565701886000</p> */ public Builder gmtModified(Long gmtModified) { this.gmtModified = gmtModified; return this; } /** * <p>Primary key ID of the version.</p> * * <strong>example:</strong> * <p>808</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Modifier.</p> * * <strong>example:</strong> * <p>root</p> */ public Builder modifier(String modifier) { this.modifier = modifier; return this; } /** * <p>Name of the variable.</p> * * <strong>example:</strong> * <p>ex_OERlw0Zqfb23</p> */ public Builder objectCode(String objectCode) { this.objectCode = objectCode; return this; } /** * <p>Primary key ID of the variable.</p> * * <strong>example:</strong> * <p>392023</p> */ public Builder objectId(Long objectId) { this.objectId = objectId; return this; } /** * <p>Region ID.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder region(String region) { this.region = region; return this; } /** * <p>Variable type.</p> * * <strong>example:</strong> * <p>EXPRESSION</p> */ public Builder type(String type) { this.type = type; return this; } /** * <p>User UID.</p> * * <strong>example:</strong> * <p>151222222222226</p> */ public Builder userId(Long userId) { this.userId = userId; return this; } /** * <p>Version number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder version(Long version) { this.version = version; 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/DownloadSmapleBatchRequest.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 DownloadSmapleBatchRequest} extends {@link RequestModel} * * <p>DownloadSmapleBatchRequest</p> */ public class DownloadSmapleBatchRequest 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 DownloadSmapleBatchRequest(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 DownloadSmapleBatchRequest 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<DownloadSmapleBatchRequest, Builder> { private String lang; private String batchUuid; private String regId; private Builder() { super(); } private Builder(DownloadSmapleBatchRequest 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, 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>Sample batch UUID</p> * * <strong>example:</strong> * <p>203f1ae65c0a41a49dc4f8a47946caa2</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 DownloadSmapleBatchRequest build() { return new DownloadSmapleBatchRequest(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/DownloadSmapleBatchResponse.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 DownloadSmapleBatchResponse} extends {@link TeaModel} * * <p>DownloadSmapleBatchResponse</p> */ public class DownloadSmapleBatchResponse 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 DownloadSmapleBatchResponseBody body; private DownloadSmapleBatchResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DownloadSmapleBatchResponse 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 DownloadSmapleBatchResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DownloadSmapleBatchResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DownloadSmapleBatchResponseBody body); @Override DownloadSmapleBatchResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DownloadSmapleBatchResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DownloadSmapleBatchResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DownloadSmapleBatchResponse 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(DownloadSmapleBatchResponseBody body) { this.body = body; return this; } @Override public DownloadSmapleBatchResponse build() { return new DownloadSmapleBatchResponse(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/DownloadSmapleBatchResponseBody.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 DownloadSmapleBatchResponseBody} extends {@link TeaModel} * * <p>DownloadSmapleBatchResponseBody</p> */ public class DownloadSmapleBatchResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DownloadSmapleBatchResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DownloadSmapleBatchResponseBody 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(DownloadSmapleBatchResponseBody 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> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } public DownloadSmapleBatchResponseBody build() { return new DownloadSmapleBatchResponseBody(this); } } /** * * {@link DownloadSmapleBatchResponseBody} extends {@link TeaModel} * * <p>DownloadSmapleBatchResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("fileDownloadURL") private String fileDownloadURL; private ResultObject(Builder builder) { this.fileDownloadURL = builder.fileDownloadURL; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return fileDownloadURL */ public String getFileDownloadURL() { return this.fileDownloadURL; } public static final class Builder { private String fileDownloadURL; private Builder() { } private Builder(ResultObject model) { this.fileDownloadURL = model.fileDownloadURL; } /** * <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 fileDownloadURL(String fileDownloadURL) { this.fileDownloadURL = fileDownloadURL; 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/ExpressionTestRequest.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 ExpressionTestRequest} extends {@link RequestModel} * * <p>ExpressionTestRequest</p> */ public class ExpressionTestRequest 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("expression") @com.aliyun.core.annotation.Validation(required = true) private String expression; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("expressionVariable") @com.aliyun.core.annotation.Validation(required = true) private String expressionVariable; @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("regId") @com.aliyun.core.annotation.Validation(required = true) 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 ExpressionTestRequest(Builder builder) { super(builder); this.lang = builder.lang; this.expression = builder.expression; this.expressionVariable = builder.expressionVariable; this.expressionVariableIds = builder.expressionVariableIds; this.id = builder.id; this.regId = builder.regId; this.scene = builder.scene; } public static Builder builder() { return new Builder(); } public static ExpressionTestRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return expression */ public String getExpression() { return this.expression; } /** * @return expressionVariable */ public String getExpressionVariable() { return this.expressionVariable; } /** * @return expressionVariableIds */ public String getExpressionVariableIds() { return this.expressionVariableIds; } /** * @return id */ public Long getId() { return this.id; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return scene */ public String getScene() { return this.scene; } public static final class Builder extends Request.Builder<ExpressionTestRequest, Builder> { private String lang; private String expression; private String expressionVariable; private String expressionVariableIds; private Long id; private String regId; private String scene; private Builder() { super(); } private Builder(ExpressionTestRequest request) { super(request); this.lang = request.lang; this.expression = request.expression; this.expressionVariable = request.expressionVariable; this.expressionVariableIds = request.expressionVariableIds; this.id = request.id; 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>Test expression.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>@ex_GX9rrlTq4b67 + 1001</p> */ public Builder expression(String expression) { this.putQueryParameter("expression", expression); this.expression = expression; return this; } /** * <p>Calculation expression variable</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>[{&quot;name&quot;:&quot;age&quot;,&quot;code&quot;:&quot;age&quot;,&quot;fieldType&quot;:&quot;INT&quot;,&quot;id&quot;:44809,&quot;value&quot;:&quot;1&quot;}]</p> */ public Builder expressionVariable(String expressionVariable) { this.putQueryParameter("expressionVariable", expressionVariable); this.expressionVariable = expressionVariable; return this; } /** * <p>Associated variable ID</p> * * <strong>example:</strong> * <p>[44659]</p> */ public Builder expressionVariableIds(String expressionVariableIds) { this.putQueryParameter("expressionVariableIds", expressionVariableIds); this.expressionVariableIds = expressionVariableIds; 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> * <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; } /** * <p>Scene</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>EXPRESSION</p> */ public Builder scene(String scene) { this.putQueryParameter("scene", scene); this.scene = scene; return this; } @Override public ExpressionTestRequest build() { return new ExpressionTestRequest(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/ExpressionTestResponse.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 ExpressionTestResponse} extends {@link TeaModel} * * <p>ExpressionTestResponse</p> */ public class ExpressionTestResponse 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 ExpressionTestResponseBody body; private ExpressionTestResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static ExpressionTestResponse 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 ExpressionTestResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<ExpressionTestResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(ExpressionTestResponseBody body); @Override ExpressionTestResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<ExpressionTestResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private ExpressionTestResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(ExpressionTestResponse 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(ExpressionTestResponseBody body) { this.body = body; return this; } @Override public ExpressionTestResponse build() { return new ExpressionTestResponse(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/ExpressionTestResponseBody.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 ExpressionTestResponseBody} extends {@link TeaModel} * * <p>ExpressionTestResponseBody</p> */ public class ExpressionTestResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private ExpressionTestResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static ExpressionTestResponseBody 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(ExpressionTestResponseBody 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 ExpressionTestResponseBody build() { return new ExpressionTestResponseBody(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/FileUploadRequest.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 FileUploadRequest} extends {@link RequestModel} * * <p>FileUploadRequest</p> */ public class FileUploadRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("FileName") private String fileName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("FileUrl") private String fileUrl; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Tab") private String tab; private FileUploadRequest(Builder builder) { super(builder); this.fileName = builder.fileName; this.fileUrl = builder.fileUrl; this.lang = builder.lang; this.tab = builder.tab; } public static Builder builder() { return new Builder(); } public static FileUploadRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return tab */ public String getTab() { return this.tab; } public static final class Builder extends Request.Builder<FileUploadRequest, Builder> { private String fileName; private String fileUrl; private String lang; private String tab; private Builder() { super(); } private Builder(FileUploadRequest request) { super(request); this.fileName = request.fileName; this.fileUrl = request.fileUrl; this.lang = request.lang; this.tab = request.tab; } /** * <p>File name.</p> * * <strong>example:</strong> * <p>P4911_2707.csv</p> */ public Builder fileName(String fileName) { this.putQueryParameter("FileName", fileName); this.fileName = fileName; return this; } /** * <p>File URL</p> * * <strong>example:</strong> * <p><a href="https://res-v1.cupl-fdfs.com/direct/79886bdc-9855-4ff4-aa34-eb5b21cd43a7">https://res-v1.cupl-fdfs.com/direct/79886bdc-9855-4ff4-aa34-eb5b21cd43a7</a></p> */ public Builder fileUrl(String fileUrl) { this.putQueryParameter("FileUrl", fileUrl); this.fileUrl = fileUrl; return this; } /** * <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>Scenario.</p> * * <strong>example:</strong> * <p>FNNCIEA</p> */ public Builder tab(String tab) { this.putQueryParameter("Tab", tab); this.tab = tab; return this; } @Override public FileUploadRequest build() { return new FileUploadRequest(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/FileUploadResponse.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 FileUploadResponse} extends {@link TeaModel} * * <p>FileUploadResponse</p> */ public class FileUploadResponse 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 FileUploadResponseBody body; private FileUploadResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static FileUploadResponse 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 FileUploadResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<FileUploadResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(FileUploadResponseBody body); @Override FileUploadResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<FileUploadResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private FileUploadResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(FileUploadResponse 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(FileUploadResponseBody body) { this.body = body; return this; } @Override public FileUploadResponse build() { return new FileUploadResponse(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/FileUploadResponseBody.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 FileUploadResponseBody} extends {@link TeaModel} * * <p>FileUploadResponseBody</p> */ public class FileUploadResponseBody 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 String resultObject; private FileUploadResponseBody(Builder builder) { this.code = builder.code; this.httpStatusCode = builder.httpStatusCode; this.message = builder.message; this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static FileUploadResponseBody 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 String getResultObject() { return this.resultObject; } public static final class Builder { private String code; private String httpStatusCode; private String message; private String requestId; private String resultObject; private Builder() { } private Builder(FileUploadResponseBody model) { this.code = model.code; this.httpStatusCode = model.httpStatusCode; this.message = model.message; this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <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>Information returned by the API request.</p> * * <strong>example:</strong> * <p>success</p> */ public Builder message(String message) { this.message = message; return this; } /** * <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 result.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(String resultObject) { this.resultObject = resultObject; return this; } public FileUploadResponseBody build() { return new FileUploadResponseBody(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/ImportFieldRequest.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 ImportFieldRequest} extends {@link RequestModel} * * <p>ImportFieldRequest</p> */ public class ImportFieldRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("FileUrl") @com.aliyun.core.annotation.Validation(required = true) private String fileUrl; @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 ImportFieldRequest(Builder builder) { super(builder); this.fileUrl = builder.fileUrl; this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static ImportFieldRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<ImportFieldRequest, Builder> { private String fileUrl; private String lang; private String regId; private Builder() { super(); } private Builder(ImportFieldRequest request) { super(request); this.fileUrl = request.fileUrl; this.lang = request.lang; this.regId = request.regId; } /** * <p>Attachment download URL.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>filed/data/text.csv</p> */ public Builder fileUrl(String fileUrl) { this.putQueryParameter("FileUrl", fileUrl); this.fileUrl = fileUrl; 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>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 ImportFieldRequest build() { return new ImportFieldRequest(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/ImportFieldResponse.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 ImportFieldResponse} extends {@link TeaModel} * * <p>ImportFieldResponse</p> */ public class ImportFieldResponse 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 ImportFieldResponseBody body; private ImportFieldResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static ImportFieldResponse 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 ImportFieldResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<ImportFieldResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(ImportFieldResponseBody body); @Override ImportFieldResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<ImportFieldResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private ImportFieldResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(ImportFieldResponse 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(ImportFieldResponseBody body) { this.body = body; return this; } @Override public ImportFieldResponse build() { return new ImportFieldResponse(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/ImportFieldResponseBody.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 ImportFieldResponseBody} extends {@link TeaModel} * * <p>ImportFieldResponseBody</p> */ public class ImportFieldResponseBody 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 ResultObject resultObject; @com.aliyun.core.annotation.NameInMap("Success") private Boolean success; private ImportFieldResponseBody(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 ImportFieldResponseBody 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 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 ResultObject resultObject; private Boolean success; private Builder() { } private Builder(ImportFieldResponseBody 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>API 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>successful</p> */ public Builder message(String message) { this.message = message; return this; } /** * <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</p> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } /** * <p>Indicator of whether the request was successful.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder success(Boolean success) { this.success = success; return this; } public ImportFieldResponseBody build() { return new ImportFieldResponseBody(this); } } /** * * {@link ImportFieldResponseBody} extends {@link TeaModel} * * <p>ImportFieldResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("FailFieldNames") private String failFieldNames; @com.aliyun.core.annotation.NameInMap("SuccessNum") private Integer successNum; @com.aliyun.core.annotation.NameInMap("TotalNum") private Integer totalNum; private ResultObject(Builder builder) { this.failFieldNames = builder.failFieldNames; this.successNum = builder.successNum; this.totalNum = builder.totalNum; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return failFieldNames */ public String getFailFieldNames() { return this.failFieldNames; } /** * @return successNum */ public Integer getSuccessNum() { return this.successNum; } /** * @return totalNum */ public Integer getTotalNum() { return this.totalNum; } public static final class Builder { private String failFieldNames; private Integer successNum; private Integer totalNum; private Builder() { } private Builder(ResultObject model) { this.failFieldNames = model.failFieldNames; this.successNum = model.successNum; this.totalNum = model.totalNum; } /** * <p>Names of fields that failed to upload</p> * * <strong>example:</strong> * <p>test</p> */ public Builder failFieldNames(String failFieldNames) { this.failFieldNames = failFieldNames; return this; } /** * <p>Number of successful executions.</p> * * <strong>example:</strong> * <p>7</p> */ public Builder successNum(Integer successNum) { this.successNum = successNum; return this; } /** * <p>Total number of records.</p> * * <strong>example:</strong> * <p>7</p> */ public Builder totalNum(Integer totalNum) { this.totalNum = totalNum; 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/ImportNameListRequest.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 ImportNameListRequest} extends {@link RequestModel} * * <p>ImportNameListRequest</p> */ public class ImportNameListRequest 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("data") private String data; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("importType") @com.aliyun.core.annotation.Validation(required = true) private String importType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("memo") private String memo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("nameListType") private String nameListType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("title") @com.aliyun.core.annotation.Validation(required = true) private String title; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("variableId") private Long variableId; private ImportNameListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.createType = builder.createType; this.data = builder.data; this.description = builder.description; this.importType = builder.importType; this.memo = builder.memo; this.nameListType = builder.nameListType; this.regId = builder.regId; this.title = builder.title; this.variableId = builder.variableId; } public static Builder builder() { return new Builder(); } public static ImportNameListRequest 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 data */ public String getData() { return this.data; } /** * @return description */ public String getDescription() { return this.description; } /** * @return importType */ public String getImportType() { return this.importType; } /** * @return memo */ public String getMemo() { return this.memo; } /** * @return nameListType */ public String getNameListType() { return this.nameListType; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return title */ public String getTitle() { return this.title; } /** * @return variableId */ public Long getVariableId() { return this.variableId; } public static final class Builder extends Request.Builder<ImportNameListRequest, Builder> { private String lang; private String createType; private String data; private String description; private String importType; private String memo; private String nameListType; private String regId; private String title; private Long variableId; private Builder() { super(); } private Builder(ImportNameListRequest request) { super(request); this.lang = request.lang; this.createType = request.createType; this.data = request.data; this.description = request.description; this.importType = request.importType; this.memo = request.memo; this.nameListType = request.nameListType; this.regId = request.regId; this.title = request.title; this.variableId = request.variableId; } /** * <p>Set the language type for request and response 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>Import name list.</p> * * <strong>example:</strong> * <p>aa\nbb\ncc</p> */ public Builder data(String data) { this.putQueryParameter("data", data); this.data = data; return this; } /** * <p>Description information.</p> * * <strong>example:</strong> * <p>描述</p> */ public Builder description(String description) { this.putQueryParameter("description", description); this.description = description; return this; } /** * <p>Document import type:</p> * <p>INPUT: Text input * CSV: CSV upload * NONE: Do not upload for now</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>CSV</p> */ public Builder importType(String importType) { this.putQueryParameter("importType", importType); this.importType = importType; return this; } /** * <p>name content memo</p> * * <strong>example:</strong> * <p>名单内容描述</p> */ public Builder memo(String memo) { this.putQueryParameter("memo", memo); this.memo = memo; return this; } /** * <p>nameListType</p> * * <strong>example:</strong> * <p>accountId</p> */ public Builder nameListType(String nameListType) { this.putQueryParameter("nameListType", nameListType); this.nameListType = nameListType; 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>Title.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>变量title</p> */ public Builder title(String title) { this.putQueryParameter("title", title); this.title = title; return this; } /** * <p>Variable ID</p> * * <strong>example:</strong> * <p>393314</p> */ public Builder variableId(Long variableId) { this.putQueryParameter("variableId", variableId); this.variableId = variableId; return this; } @Override public ImportNameListRequest build() { return new ImportNameListRequest(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/ImportNameListResponse.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 ImportNameListResponse} extends {@link TeaModel} * * <p>ImportNameListResponse</p> */ public class ImportNameListResponse 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 ImportNameListResponseBody body; private ImportNameListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static ImportNameListResponse 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 ImportNameListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<ImportNameListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(ImportNameListResponseBody body); @Override ImportNameListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<ImportNameListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private ImportNameListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(ImportNameListResponse 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(ImportNameListResponseBody body) { this.body = body; return this; } @Override public ImportNameListResponse build() { return new ImportNameListResponse(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/ImportNameListResponseBody.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 ImportNameListResponseBody} extends {@link TeaModel} * * <p>ImportNameListResponseBody</p> */ public class ImportNameListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private ImportNameListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static ImportNameListResponseBody 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(ImportNameListResponseBody 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 ImportNameListResponseBody build() { return new ImportNameListResponseBody(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/ImportTemplateEventRequest.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 ImportTemplateEventRequest} extends {@link RequestModel} * * <p>ImportTemplateEventRequest</p> */ public class ImportTemplateEventRequest 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("eventTemplateIds") private String eventTemplateIds; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private ImportTemplateEventRequest(Builder builder) { super(builder); this.lang = builder.lang; this.eventTemplateIds = builder.eventTemplateIds; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static ImportTemplateEventRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return eventTemplateIds */ public String getEventTemplateIds() { return this.eventTemplateIds; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<ImportTemplateEventRequest, Builder> { private String lang; private String eventTemplateIds; private String regId; private Builder() { super(); } private Builder(ImportTemplateEventRequest request) { super(request); this.lang = request.lang; this.eventTemplateIds = request.eventTemplateIds; 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>The template ID of the event.</p> * * <strong>example:</strong> * <p>register</p> */ public Builder eventTemplateIds(String eventTemplateIds) { this.putQueryParameter("eventTemplateIds", eventTemplateIds); this.eventTemplateIds = eventTemplateIds; 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 ImportTemplateEventRequest build() { return new ImportTemplateEventRequest(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/ImportTemplateEventResponse.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 ImportTemplateEventResponse} extends {@link TeaModel} * * <p>ImportTemplateEventResponse</p> */ public class ImportTemplateEventResponse 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 ImportTemplateEventResponseBody body; private ImportTemplateEventResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static ImportTemplateEventResponse 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 ImportTemplateEventResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<ImportTemplateEventResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(ImportTemplateEventResponseBody body); @Override ImportTemplateEventResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<ImportTemplateEventResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private ImportTemplateEventResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(ImportTemplateEventResponse 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(ImportTemplateEventResponseBody body) { this.body = body; return this; } @Override public ImportTemplateEventResponse build() { return new ImportTemplateEventResponse(this); } } }