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/DescribeRuleHitRequest.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 DescribeRuleHitRequest} extends {@link RequestModel} * * <p>DescribeRuleHitRequest</p> */ public class DescribeRuleHitRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("requestTime") private Long requestTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ruleId") private String ruleId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ruleSnapshotId") private String ruleSnapshotId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("sRequestId") private String sRequestId; private DescribeRuleHitRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; this.requestTime = builder.requestTime; this.ruleId = builder.ruleId; this.ruleSnapshotId = builder.ruleSnapshotId; this.sRequestId = builder.sRequestId; } public static Builder builder() { return new Builder(); } public static DescribeRuleHitRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return requestTime */ public Long getRequestTime() { return this.requestTime; } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } /** * @return ruleSnapshotId */ public String getRuleSnapshotId() { return this.ruleSnapshotId; } /** * @return sRequestId */ public String getSRequestId() { return this.sRequestId; } public static final class Builder extends Request.Builder<DescribeRuleHitRequest, Builder> { private String lang; private String regId; private Long requestTime; private String ruleId; private String ruleSnapshotId; private String sRequestId; private Builder() { super(); } private Builder(DescribeRuleHitRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; this.requestTime = request.requestTime; this.ruleId = request.ruleId; this.ruleSnapshotId = request.ruleSnapshotId; this.sRequestId = request.sRequestId; } /** * <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; } /** * <p>Execution time</p> * * <strong>example:</strong> * <p>1752571330000</p> */ public Builder requestTime(Long requestTime) { this.putQueryParameter("requestTime", requestTime); this.requestTime = requestTime; return this; } /** * <p>Rule ID</p> * * <strong>example:</strong> * <p>102059</p> */ public Builder ruleId(String ruleId) { this.putQueryParameter("ruleId", ruleId); this.ruleId = ruleId; return this; } /** * <p>Snapshot ID.</p> * * <strong>example:</strong> * <p>27</p> */ public Builder ruleSnapshotId(String ruleSnapshotId) { this.putQueryParameter("ruleSnapshotId", ruleSnapshotId); this.ruleSnapshotId = ruleSnapshotId; return this; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>60C97040-D5D5-4906-9522-B9B413730CAA</p> */ public Builder sRequestId(String sRequestId) { this.putQueryParameter("sRequestId", sRequestId); this.sRequestId = sRequestId; return this; } @Override public DescribeRuleHitRequest build() { return new DescribeRuleHitRequest(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/DescribeRuleHitResponse.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 DescribeRuleHitResponse} extends {@link TeaModel} * * <p>DescribeRuleHitResponse</p> */ public class DescribeRuleHitResponse 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 DescribeRuleHitResponseBody body; private DescribeRuleHitResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeRuleHitResponse 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 DescribeRuleHitResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeRuleHitResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeRuleHitResponseBody body); @Override DescribeRuleHitResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeRuleHitResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeRuleHitResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeRuleHitResponse 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(DescribeRuleHitResponseBody body) { this.body = body; return this; } @Override public DescribeRuleHitResponse build() { return new DescribeRuleHitResponse(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/DescribeRuleHitResponseBody.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 DescribeRuleHitResponseBody} extends {@link TeaModel} * * <p>DescribeRuleHitResponseBody</p> */ public class DescribeRuleHitResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.Map<String, ?> resultObject; private DescribeRuleHitResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeRuleHitResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public java.util.Map<String, ?> getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private java.util.Map<String, ?> resultObject; private Builder() { } private Builder(DescribeRuleHitResponseBody 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(java.util.Map<String, ?> resultObject) { this.resultObject = resultObject; return this; } public DescribeRuleHitResponseBody build() { return new DescribeRuleHitResponseBody(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/DescribeRuleListByEventCodesListRequest.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 DescribeRuleListByEventCodesListRequest} extends {@link RequestModel} * * <p>DescribeRuleListByEventCodesListRequest</p> */ public class DescribeRuleListByEventCodesListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventCodes") @com.aliyun.core.annotation.Validation(required = true) private String eventCodes; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DescribeRuleListByEventCodesListRequest(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 DescribeRuleListByEventCodesListRequest 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<DescribeRuleListByEventCodesListRequest, Builder> { private String lang; private String eventCodes; private String regId; private Builder() { super(); } private Builder(DescribeRuleListByEventCodesListRequest request) { super(request); this.lang = request.lang; this.eventCodes = request.eventCodes; this.regId = request.regId; } /** * <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>Event codes, JSON array string</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>[&quot;de_asssce8122&quot;]</p> */ public Builder eventCodes(String eventCodes) { this.putQueryParameter("eventCodes", eventCodes); this.eventCodes = eventCodes; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeRuleListByEventCodesListRequest build() { return new DescribeRuleListByEventCodesListRequest(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/DescribeRuleListByEventCodesListResponse.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 DescribeRuleListByEventCodesListResponse} extends {@link TeaModel} * * <p>DescribeRuleListByEventCodesListResponse</p> */ public class DescribeRuleListByEventCodesListResponse 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 DescribeRuleListByEventCodesListResponseBody body; private DescribeRuleListByEventCodesListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeRuleListByEventCodesListResponse 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 DescribeRuleListByEventCodesListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeRuleListByEventCodesListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeRuleListByEventCodesListResponseBody body); @Override DescribeRuleListByEventCodesListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeRuleListByEventCodesListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeRuleListByEventCodesListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeRuleListByEventCodesListResponse 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(DescribeRuleListByEventCodesListResponseBody body) { this.body = body; return this; } @Override public DescribeRuleListByEventCodesListResponse build() { return new DescribeRuleListByEventCodesListResponse(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/DescribeRuleListByEventCodesListResponseBody.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 DescribeRuleListByEventCodesListResponseBody} extends {@link TeaModel} * * <p>DescribeRuleListByEventCodesListResponseBody</p> */ public class DescribeRuleListByEventCodesListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeRuleListByEventCodesListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeRuleListByEventCodesListResponseBody 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(DescribeRuleListByEventCodesListResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } public DescribeRuleListByEventCodesListResponseBody build() { return new DescribeRuleListByEventCodesListResponseBody(this); } } /** * * {@link DescribeRuleListByEventCodesListResponseBody} extends {@link TeaModel} * * <p>DescribeRuleListByEventCodesListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("ruleId") private String ruleId; @com.aliyun.core.annotation.NameInMap("ruleName") private String ruleName; private ResultObject(Builder builder) { this.ruleId = builder.ruleId; this.ruleName = builder.ruleName; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } /** * @return ruleName */ public String getRuleName() { return this.ruleName; } public static final class Builder { private String ruleId; private String ruleName; private Builder() { } private Builder(ResultObject model) { this.ruleId = model.ruleId; this.ruleName = model.ruleName; } /** * <p>Policy ID</p> * * <strong>example:</strong> * <p>4730</p> */ public Builder ruleId(String ruleId) { this.ruleId = ruleId; return this; } /** * <p>Policy name</p> * * <strong>example:</strong> * <p>营销风险识别</p> */ public Builder ruleName(String ruleName) { this.ruleName = ruleName; 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/DescribeRulePageListRequest.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 DescribeRulePageListRequest} extends {@link RequestModel} * * <p>DescribeRulePageListRequest</p> */ public class DescribeRulePageListRequest 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("eventCode") private String eventCode; @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("ruleAuthType") private String ruleAuthType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ruleName") private String ruleName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ruleStatus") private String ruleStatus; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("sort") private String sort; private DescribeRulePageListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.createType = builder.createType; this.currentPage = builder.currentPage; this.eventCode = builder.eventCode; this.pageSize = builder.pageSize; this.regId = builder.regId; this.ruleAuthType = builder.ruleAuthType; this.ruleName = builder.ruleName; this.ruleStatus = builder.ruleStatus; this.sort = builder.sort; } public static Builder builder() { return new Builder(); } public static DescribeRulePageListRequest 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 eventCode */ public String getEventCode() { return this.eventCode; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return ruleAuthType */ public String getRuleAuthType() { return this.ruleAuthType; } /** * @return ruleName */ public String getRuleName() { return this.ruleName; } /** * @return ruleStatus */ public String getRuleStatus() { return this.ruleStatus; } /** * @return sort */ public String getSort() { return this.sort; } public static final class Builder extends Request.Builder<DescribeRulePageListRequest, Builder> { private String lang; private String createType; private String currentPage; private String eventCode; private String pageSize; private String regId; private String ruleAuthType; private String ruleName; private String ruleStatus; private String sort; private Builder() { super(); } private Builder(DescribeRulePageListRequest request) { super(request); this.lang = request.lang; this.createType = request.createType; this.currentPage = request.currentPage; this.eventCode = request.eventCode; this.pageSize = request.pageSize; this.regId = request.regId; this.ruleAuthType = request.ruleAuthType; this.ruleName = request.ruleName; this.ruleStatus = request.ruleStatus; this.sort = request.sort; } /** * <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>Event code.</p> * * <strong>example:</strong> * <p>de_asssce8122</p> */ public Builder eventCode(String eventCode) { this.putQueryParameter("eventCode", eventCode); this.eventCode = eventCode; 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>Policy type.</p> * * <strong>example:</strong> * <p>NOMAL</p> */ public Builder ruleAuthType(String ruleAuthType) { this.putQueryParameter("ruleAuthType", ruleAuthType); this.ruleAuthType = ruleAuthType; return this; } /** * <p>Policy name.</p> * * <strong>example:</strong> * <p>营销风险识别评分</p> */ public Builder ruleName(String ruleName) { this.putQueryParameter("ruleName", ruleName); this.ruleName = ruleName; return this; } /** * <p>Policy status.</p> * * <strong>example:</strong> * <p>RUNNING</p> */ public Builder ruleStatus(String ruleStatus) { this.putQueryParameter("ruleStatus", ruleStatus); this.ruleStatus = ruleStatus; return this; } /** * <p>Sorting method, default value is desc.</p> * <ul> * <li>desc: descending order</li> * <li>asc: ascending order</li> * </ul> * * <strong>example:</strong> * <p>asc</p> */ public Builder sort(String sort) { this.putQueryParameter("sort", sort); this.sort = sort; return this; } @Override public DescribeRulePageListRequest build() { return new DescribeRulePageListRequest(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/DescribeRulePageListResponse.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 DescribeRulePageListResponse} extends {@link TeaModel} * * <p>DescribeRulePageListResponse</p> */ public class DescribeRulePageListResponse 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 DescribeRulePageListResponseBody body; private DescribeRulePageListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeRulePageListResponse 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 DescribeRulePageListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeRulePageListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeRulePageListResponseBody body); @Override DescribeRulePageListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeRulePageListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeRulePageListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeRulePageListResponse 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(DescribeRulePageListResponseBody body) { this.body = body; return this; } @Override public DescribeRulePageListResponse build() { return new DescribeRulePageListResponse(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/DescribeRulePageListResponseBody.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 DescribeRulePageListResponseBody} extends {@link TeaModel} * * <p>DescribeRulePageListResponseBody</p> */ public class DescribeRulePageListResponseBody 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 DescribeRulePageListResponseBody(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 DescribeRulePageListResponseBody 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(DescribeRulePageListResponseBody 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>Page size, 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>28</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 DescribeRulePageListResponseBody build() { return new DescribeRulePageListResponseBody(this); } } /** * * {@link DescribeRulePageListResponseBody} extends {@link TeaModel} * * <p>DescribeRulePageListResponseBody</p> */ public static class ConsoleAudit extends TeaModel { @com.aliyun.core.annotation.NameInMap("applyUserId") private String applyUserId; @com.aliyun.core.annotation.NameInMap("applyUserName") private String applyUserName; @com.aliyun.core.annotation.NameInMap("auditMsg") private String auditMsg; @com.aliyun.core.annotation.NameInMap("auditRealUserId") private String auditRealUserId; @com.aliyun.core.annotation.NameInMap("auditRealUserName") private String auditRealUserName; @com.aliyun.core.annotation.NameInMap("auditRemark") private String auditRemark; @com.aliyun.core.annotation.NameInMap("auditStatus") private String auditStatus; @com.aliyun.core.annotation.NameInMap("auditTime") private Long auditTime; @com.aliyun.core.annotation.NameInMap("auditUserId") private String auditUserId; @com.aliyun.core.annotation.NameInMap("auditUserName") private String auditUserName; @com.aliyun.core.annotation.NameInMap("gmtCreate") private Long gmtCreate; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("relationExt") private String relationExt; @com.aliyun.core.annotation.NameInMap("relationId") private Long relationId; @com.aliyun.core.annotation.NameInMap("relationName") private String relationName; @com.aliyun.core.annotation.NameInMap("relationType") private String relationType; private ConsoleAudit(Builder builder) { this.applyUserId = builder.applyUserId; this.applyUserName = builder.applyUserName; this.auditMsg = builder.auditMsg; this.auditRealUserId = builder.auditRealUserId; this.auditRealUserName = builder.auditRealUserName; this.auditRemark = builder.auditRemark; this.auditStatus = builder.auditStatus; this.auditTime = builder.auditTime; this.auditUserId = builder.auditUserId; this.auditUserName = builder.auditUserName; this.gmtCreate = builder.gmtCreate; this.id = builder.id; this.relationExt = builder.relationExt; this.relationId = builder.relationId; this.relationName = builder.relationName; this.relationType = builder.relationType; } public static Builder builder() { return new Builder(); } public static ConsoleAudit create() { return builder().build(); } /** * @return applyUserId */ public String getApplyUserId() { return this.applyUserId; } /** * @return applyUserName */ public String getApplyUserName() { return this.applyUserName; } /** * @return auditMsg */ public String getAuditMsg() { return this.auditMsg; } /** * @return auditRealUserId */ public String getAuditRealUserId() { return this.auditRealUserId; } /** * @return auditRealUserName */ public String getAuditRealUserName() { return this.auditRealUserName; } /** * @return auditRemark */ public String getAuditRemark() { return this.auditRemark; } /** * @return auditStatus */ public String getAuditStatus() { return this.auditStatus; } /** * @return auditTime */ public Long getAuditTime() { return this.auditTime; } /** * @return auditUserId */ public String getAuditUserId() { return this.auditUserId; } /** * @return auditUserName */ public String getAuditUserName() { return this.auditUserName; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return id */ public Long getId() { return this.id; } /** * @return relationExt */ public String getRelationExt() { return this.relationExt; } /** * @return relationId */ public Long getRelationId() { return this.relationId; } /** * @return relationName */ public String getRelationName() { return this.relationName; } /** * @return relationType */ public String getRelationType() { return this.relationType; } public static final class Builder { private String applyUserId; private String applyUserName; private String auditMsg; private String auditRealUserId; private String auditRealUserName; private String auditRemark; private String auditStatus; private Long auditTime; private String auditUserId; private String auditUserName; private Long gmtCreate; private Long id; private String relationExt; private Long relationId; private String relationName; private String relationType; private Builder() { } private Builder(ConsoleAudit model) { this.applyUserId = model.applyUserId; this.applyUserName = model.applyUserName; this.auditMsg = model.auditMsg; this.auditRealUserId = model.auditRealUserId; this.auditRealUserName = model.auditRealUserName; this.auditRemark = model.auditRemark; this.auditStatus = model.auditStatus; this.auditTime = model.auditTime; this.auditUserId = model.auditUserId; this.auditUserName = model.auditUserName; this.gmtCreate = model.gmtCreate; this.id = model.id; this.relationExt = model.relationExt; this.relationId = model.relationId; this.relationName = model.relationName; this.relationType = model.relationType; } /** * <p>UID of the user who passed the audit</p> * * <strong>example:</strong> * <p>用户uid</p> */ public Builder applyUserId(String applyUserId) { this.applyUserId = applyUserId; return this; } /** * <p>Name of the user who passed the audit</p> * * <strong>example:</strong> * <p>root</p> */ public Builder applyUserName(String applyUserName) { this.applyUserName = applyUserName; return this; } /** * <p>Approval comments</p> * * <strong>example:</strong> * <p>同意</p> */ public Builder auditMsg(String auditMsg) { this.auditMsg = auditMsg; return this; } /** * <p>UID of the final auditor</p> * * <strong>example:</strong> * <p>1728</p> */ public Builder auditRealUserId(String auditRealUserId) { this.auditRealUserId = auditRealUserId; return this; } /** * <p>Name of the final auditor</p> * * <strong>example:</strong> * <p>root</p> */ public Builder auditRealUserName(String auditRealUserName) { this.auditRealUserName = auditRealUserName; return this; } /** * <p>Remarks by the approver.</p> * * <strong>example:</strong> * <p>备注</p> */ public Builder auditRemark(String auditRemark) { this.auditRemark = auditRemark; return this; } /** * <p>Application audit status</p> * * <strong>example:</strong> * <p>AGREE</p> */ public Builder auditStatus(String auditStatus) { this.auditStatus = auditStatus; return this; } /** * <p>Approval time</p> * * <strong>example:</strong> * <p>1545726028000</p> */ public Builder auditTime(Long auditTime) { this.auditTime = auditTime; return this; } /** * <p>UID of the auditor</p> * * <strong>example:</strong> * <p>1234xxxx</p> */ public Builder auditUserId(String auditUserId) { this.auditUserId = auditUserId; return this; } /** * <p>Name of the auditor</p> * * <strong>example:</strong> * <p>root</p> */ public Builder auditUserName(String auditUserName) { this.auditUserName = auditUserName; return this; } /** * <p>Creation time.</p> * * <strong>example:</strong> * <p>1545726028000</p> */ public Builder gmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * <p>Primary key ID</p> * * <strong>example:</strong> * <p>1728</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Information of other related parties (in JSON format)</p> * * <strong>example:</strong> * <p>{}</p> */ public Builder relationExt(String relationExt) { this.relationExt = relationExt; return this; } /** * <p>ID of the related transaction for the approval</p> * * <strong>example:</strong> * <p>123</p> */ public Builder relationId(Long relationId) { this.relationId = relationId; return this; } /** * <p>Name of the related transaction for the approval (can be null)</p> * * <strong>example:</strong> * <p>策略1</p> */ public Builder relationName(String relationName) { this.relationName = relationName; return this; } /** * <p>Type of the approval (e.g., <code>rule</code> represents the approval of a rule)</p> * * <strong>example:</strong> * <p>RULE</p> */ public Builder relationType(String relationType) { this.relationType = relationType; return this; } public ConsoleAudit build() { return new ConsoleAudit(this); } } } /** * * {@link DescribeRulePageListResponseBody} extends {@link TeaModel} * * <p>DescribeRulePageListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("authType") private String authType; @com.aliyun.core.annotation.NameInMap("consoleAudit") private ConsoleAudit consoleAudit; @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.NameInMap("eventName") private String eventName; @com.aliyun.core.annotation.NameInMap("eventType") private String eventType; @com.aliyun.core.annotation.NameInMap("externalRuleName") private String externalRuleName; @com.aliyun.core.annotation.NameInMap("gmtCreate") private Long gmtCreate; @com.aliyun.core.annotation.NameInMap("gmtModified") private Long gmtModified; @com.aliyun.core.annotation.NameInMap("hasNewVersion") private Boolean hasNewVersion; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("mainRuleId") private String mainRuleId; @com.aliyun.core.annotation.NameInMap("priority") private Long priority; @com.aliyun.core.annotation.NameInMap("ruleAuthType") private String ruleAuthType; @com.aliyun.core.annotation.NameInMap("ruleId") private String ruleId; @com.aliyun.core.annotation.NameInMap("ruleMemo") private String ruleMemo; @com.aliyun.core.annotation.NameInMap("ruleName") private String ruleName; @com.aliyun.core.annotation.NameInMap("ruleStatus") private String ruleStatus; @com.aliyun.core.annotation.NameInMap("ruleType") private String ruleType; @com.aliyun.core.annotation.NameInMap("ruleVersionId") private Long ruleVersionId; @com.aliyun.core.annotation.NameInMap("templateId") private Long templateId; @com.aliyun.core.annotation.NameInMap("version") private Integer version; private ResultObject(Builder builder) { this.authType = builder.authType; this.consoleAudit = builder.consoleAudit; this.eventCode = builder.eventCode; this.eventName = builder.eventName; this.eventType = builder.eventType; this.externalRuleName = builder.externalRuleName; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.hasNewVersion = builder.hasNewVersion; this.id = builder.id; this.mainRuleId = builder.mainRuleId; this.priority = builder.priority; this.ruleAuthType = builder.ruleAuthType; this.ruleId = builder.ruleId; this.ruleMemo = builder.ruleMemo; this.ruleName = builder.ruleName; this.ruleStatus = builder.ruleStatus; this.ruleType = builder.ruleType; this.ruleVersionId = builder.ruleVersionId; this.templateId = builder.templateId; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return authType */ public String getAuthType() { return this.authType; } /** * @return consoleAudit */ public ConsoleAudit getConsoleAudit() { return this.consoleAudit; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return eventType */ public String getEventType() { return this.eventType; } /** * @return externalRuleName */ public String getExternalRuleName() { return this.externalRuleName; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return gmtModified */ public Long getGmtModified() { return this.gmtModified; } /** * @return hasNewVersion */ public Boolean getHasNewVersion() { return this.hasNewVersion; } /** * @return id */ public Long getId() { return this.id; } /** * @return mainRuleId */ public String getMainRuleId() { return this.mainRuleId; } /** * @return priority */ public Long getPriority() { return this.priority; } /** * @return ruleAuthType */ public String getRuleAuthType() { return this.ruleAuthType; } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } /** * @return ruleMemo */ public String getRuleMemo() { return this.ruleMemo; } /** * @return ruleName */ public String getRuleName() { return this.ruleName; } /** * @return ruleStatus */ public String getRuleStatus() { return this.ruleStatus; } /** * @return ruleType */ public String getRuleType() { return this.ruleType; } /** * @return ruleVersionId */ public Long getRuleVersionId() { return this.ruleVersionId; } /** * @return templateId */ public Long getTemplateId() { return this.templateId; } /** * @return version */ public Integer getVersion() { return this.version; } public static final class Builder { private String authType; private ConsoleAudit consoleAudit; private String eventCode; private String eventName; private String eventType; private String externalRuleName; private Long gmtCreate; private Long gmtModified; private Boolean hasNewVersion; private Long id; private String mainRuleId; private Long priority; private String ruleAuthType; private String ruleId; private String ruleMemo; private String ruleName; private String ruleStatus; private String ruleType; private Long ruleVersionId; private Long templateId; private Integer version; private Builder() { } private Builder(ResultObject model) { this.authType = model.authType; this.consoleAudit = model.consoleAudit; this.eventCode = model.eventCode; this.eventName = model.eventName; this.eventType = model.eventType; this.externalRuleName = model.externalRuleName; this.gmtCreate = model.gmtCreate; this.gmtModified = model.gmtModified; this.hasNewVersion = model.hasNewVersion; this.id = model.id; this.mainRuleId = model.mainRuleId; this.priority = model.priority; this.ruleAuthType = model.ruleAuthType; this.ruleId = model.ruleId; this.ruleMemo = model.ruleMemo; this.ruleName = model.ruleName; this.ruleStatus = model.ruleStatus; this.ruleType = model.ruleType; this.ruleVersionId = model.ruleVersionId; this.templateId = model.templateId; this.version = model.version; } /** * <p>Service authorization type</p> * * <strong>example:</strong> * <p>all</p> */ public Builder authType(String authType) { this.authType = authType; return this; } /** * <p>Audit object</p> */ public Builder consoleAudit(ConsoleAudit consoleAudit) { this.consoleAudit = consoleAudit; return this; } /** * <p>Event code.</p> * * <strong>example:</strong> * <p>de_arcehq4370</p> */ public Builder eventCode(String eventCode) { this.eventCode = eventCode; return this; } /** * <p>Event name.</p> * * <strong>example:</strong> * <p>注册风险</p> */ public Builder eventName(String eventName) { this.eventName = eventName; return this; } /** * <p>Event type</p> * * <strong>example:</strong> * <p>MAIN</p> */ public Builder eventType(String eventType) { this.eventType = eventType; return this; } /** * <p>External name of the rule</p> * * <strong>example:</strong> * <p>策略1</p> */ public Builder externalRuleName(String externalRuleName) { this.externalRuleName = externalRuleName; 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>Whether there is a new version</p> * * <strong>example:</strong> * <p>true</p> */ public Builder hasNewVersion(Boolean hasNewVersion) { this.hasNewVersion = hasNewVersion; return this; } /** * <p>Primary key ID of the policy.</p> * * <strong>example:</strong> * <p>2793</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Main rule ID</p> * * <strong>example:</strong> * <p>4399</p> */ public Builder mainRuleId(String mainRuleId) { this.mainRuleId = mainRuleId; return this; } /** * <p>Policy priority, the higher the number, the higher the priority.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder priority(Long priority) { this.priority = priority; return this; } /** * <p>Rule type</p> * * <strong>example:</strong> * <p>NORMAL</p> */ public Builder ruleAuthType(String ruleAuthType) { this.ruleAuthType = ruleAuthType; return this; } /** * <p>Policy ID.</p> * * <strong>example:</strong> * <p>102059</p> */ public Builder ruleId(String ruleId) { this.ruleId = ruleId; return this; } /** * <p>Policy description.</p> * * <strong>example:</strong> * <p>描述信息</p> */ public Builder ruleMemo(String ruleMemo) { this.ruleMemo = ruleMemo; return this; } /** * <p>Policy name.</p> * * <strong>example:</strong> * <p>营销风险识别</p> */ public Builder ruleName(String ruleName) { this.ruleName = ruleName; return this; } /** * <p>Policy status.</p> * * <strong>example:</strong> * <p>RUNNING</p> */ public Builder ruleStatus(String ruleStatus) { this.ruleStatus = ruleStatus; return this; } /** * <p>Rule type</p> * * <strong>example:</strong> * <p>NORMAL</p> */ public Builder ruleType(String ruleType) { this.ruleType = ruleType; return this; } /** * <p>Primary key ID of the rule version.</p> * * <strong>example:</strong> * <p>11300</p> */ public Builder ruleVersionId(Long ruleVersionId) { this.ruleVersionId = ruleVersionId; return this; } /** * <p>Template ID.</p> * * <strong>example:</strong> * <p>register</p> */ public Builder templateId(Long templateId) { this.templateId = templateId; 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/DescribeRuleSnapshotRequest.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 DescribeRuleSnapshotRequest} extends {@link RequestModel} * * <p>DescribeRuleSnapshotRequest</p> */ public class DescribeRuleSnapshotRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ruleId") private String ruleId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("snapshotVersion") private String snapshotVersion; private DescribeRuleSnapshotRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; this.ruleId = builder.ruleId; this.snapshotVersion = builder.snapshotVersion; } public static Builder builder() { return new Builder(); } public static DescribeRuleSnapshotRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } /** * @return snapshotVersion */ public String getSnapshotVersion() { return this.snapshotVersion; } public static final class Builder extends Request.Builder<DescribeRuleSnapshotRequest, Builder> { private String lang; private String regId; private String ruleId; private String snapshotVersion; private Builder() { super(); } private Builder(DescribeRuleSnapshotRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; this.ruleId = request.ruleId; this.snapshotVersion = request.snapshotVersion; } /** * <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; } /** * <p>Policy ID</p> * * <strong>example:</strong> * <p>101544</p> */ public Builder ruleId(String ruleId) { this.putQueryParameter("ruleId", ruleId); this.ruleId = ruleId; return this; } /** * <p>Snapshot version.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder snapshotVersion(String snapshotVersion) { this.putQueryParameter("snapshotVersion", snapshotVersion); this.snapshotVersion = snapshotVersion; return this; } @Override public DescribeRuleSnapshotRequest build() { return new DescribeRuleSnapshotRequest(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/DescribeRuleSnapshotResponse.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 DescribeRuleSnapshotResponse} extends {@link TeaModel} * * <p>DescribeRuleSnapshotResponse</p> */ public class DescribeRuleSnapshotResponse 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 DescribeRuleSnapshotResponseBody body; private DescribeRuleSnapshotResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeRuleSnapshotResponse 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 DescribeRuleSnapshotResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeRuleSnapshotResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeRuleSnapshotResponseBody body); @Override DescribeRuleSnapshotResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeRuleSnapshotResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeRuleSnapshotResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeRuleSnapshotResponse 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(DescribeRuleSnapshotResponseBody body) { this.body = body; return this; } @Override public DescribeRuleSnapshotResponse build() { return new DescribeRuleSnapshotResponse(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/DescribeRuleSnapshotResponseBody.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 DescribeRuleSnapshotResponseBody} extends {@link TeaModel} * * <p>DescribeRuleSnapshotResponseBody</p> */ public class DescribeRuleSnapshotResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeRuleSnapshotResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeRuleSnapshotResponseBody 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(DescribeRuleSnapshotResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } public DescribeRuleSnapshotResponseBody build() { return new DescribeRuleSnapshotResponseBody(this); } } /** * * {@link DescribeRuleSnapshotResponseBody} extends {@link TeaModel} * * <p>DescribeRuleSnapshotResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("bizVersion") private String bizVersion; @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("logicExpression") private String logicExpression; @com.aliyun.core.annotation.NameInMap("memo") private String memo; @com.aliyun.core.annotation.NameInMap("ruleActions") private String ruleActions; @com.aliyun.core.annotation.NameInMap("ruleBody") private String ruleBody; @com.aliyun.core.annotation.NameInMap("ruleExpressions") private String ruleExpressions; @com.aliyun.core.annotation.NameInMap("ruleId") private String ruleId; @com.aliyun.core.annotation.NameInMap("ruleName") private String ruleName; @com.aliyun.core.annotation.NameInMap("ruleStatus") private String ruleStatus; @com.aliyun.core.annotation.NameInMap("ruleType") private String ruleType; private ResultObject(Builder builder) { this.bizVersion = builder.bizVersion; this.eventCode = builder.eventCode; this.eventName = builder.eventName; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.logicExpression = builder.logicExpression; this.memo = builder.memo; this.ruleActions = builder.ruleActions; this.ruleBody = builder.ruleBody; this.ruleExpressions = builder.ruleExpressions; this.ruleId = builder.ruleId; this.ruleName = builder.ruleName; this.ruleStatus = builder.ruleStatus; this.ruleType = builder.ruleType; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return bizVersion */ public String getBizVersion() { return this.bizVersion; } /** * @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 logicExpression */ public String getLogicExpression() { return this.logicExpression; } /** * @return memo */ public String getMemo() { return this.memo; } /** * @return ruleActions */ public String getRuleActions() { return this.ruleActions; } /** * @return ruleBody */ public String getRuleBody() { return this.ruleBody; } /** * @return ruleExpressions */ public String getRuleExpressions() { return this.ruleExpressions; } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } /** * @return ruleName */ public String getRuleName() { return this.ruleName; } /** * @return ruleStatus */ public String getRuleStatus() { return this.ruleStatus; } /** * @return ruleType */ public String getRuleType() { return this.ruleType; } public static final class Builder { private String bizVersion; private String eventCode; private String eventName; private Long gmtCreate; private Long gmtModified; private String logicExpression; private String memo; private String ruleActions; private String ruleBody; private String ruleExpressions; private String ruleId; private String ruleName; private String ruleStatus; private String ruleType; private Builder() { } private Builder(ResultObject model) { this.bizVersion = model.bizVersion; this.eventCode = model.eventCode; this.eventName = model.eventName; this.gmtCreate = model.gmtCreate; this.gmtModified = model.gmtModified; this.logicExpression = model.logicExpression; this.memo = model.memo; this.ruleActions = model.ruleActions; this.ruleBody = model.ruleBody; this.ruleExpressions = model.ruleExpressions; this.ruleId = model.ruleId; this.ruleName = model.ruleName; this.ruleStatus = model.ruleStatus; this.ruleType = model.ruleType; } /** * <p>Business version.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder bizVersion(String bizVersion) { this.bizVersion = bizVersion; 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>Expression for analysis results.</p> * * <strong>example:</strong> * <p>1&amp;2</p> */ public Builder logicExpression(String logicExpression) { this.logicExpression = logicExpression; return this; } /** * <p>Memo.</p> * * <strong>example:</strong> * <p>备注</p> */ public Builder memo(String memo) { this.memo = memo; return this; } /** * <p>Rule actions.</p> * * <strong>example:</strong> * <p>[{&quot;inputs&quot;:[&quot;LdShop&quot;],&quot;name&quot;:&quot;<strong>addDeTags</strong>&quot;,&quot;actionType&quot;:&quot;TAG&quot;,&quot;outputType&quot;:&quot;const&quot;}]</p> */ public Builder ruleActions(String ruleActions) { this.ruleActions = ruleActions; return this; } /** * <p>DSL rule expression. This field is required when ruleType is DSL.</p> * * <strong>example:</strong> * <p>{&quot;elseIfStatement&quot;:[{&quot;condition&quot;:{&quot;currentId&quot;:0,&quot;deepCount&quot;:1,&quot;list&quot;:[{&quot;currentId&quot;:0,&quot;deepCount&quot;:1,&quot;left&quot;:{&quot;code&quot;:&quot;getLbsRegion(longitude, latitude)?.prov&quot;,&quot;description&quot;:&quot;根据经纬度得到省份信息,比如经度:111.878062,纬度:22.585409,则经过运算,输出”广东省“&quot;,&quot;displayType&quot;:&quot;SELF_BIND&quot;,&quot;fieldType&quot;:&quot;STRING&quot;,&quot;functionCode&quot;:&quot;&quot;,&quot;functionName&quot;:&quot;&quot;,&quot;hasRightVariable&quot;:true,&quot;name&quot;:&quot;sl_S02sHLFT7818&quot;,&quot;outputThreshold&quot;:{},&quot;sourceType&quot;:&quot;SAF&quot;,&quot;title&quot;:&quot;经纬度自定义系统变量&quot;,&quot;type&quot;:&quot;SELF_BIND&quot;},&quot;operatorCode&quot;:&quot;equals&quot;,&quot;operatorName&quot;:&quot;等于&quot;,&quot;parentId&quot;:0,&quot;right&quot;:{&quot;name&quot;:&quot;cc&quot;,&quot;rightVariableType&quot;:&quot;constant&quot;},&quot;sequence&quot;:5}],&quot;parentId&quot;:0,&quot;relationship&quot;:&quot;and&quot;},&quot;then&quot;:[{&quot;actionType&quot;:&quot;TAG&quot;,&quot;code&quot;:&quot;addDeTags&quot;,&quot;description&quot;:&quot;打标签&quot;,&quot;displayType&quot;:&quot;ACTION&quot;,&quot;fieldType&quot;:&quot;STRING&quot;,&quot;inputs&quot;:[&quot;332&quot;],&quot;name&quot;:&quot;<strong>addDeTags</strong>&quot;,&quot;outputType&quot;:&quot;const&quot;,&quot;sourceType&quot;:&quot;SAF&quot;,&quot;title&quot;:&quot;打标签&quot;,&quot;type&quot;:&quot;ACTION&quot;}]}],&quot;elseStatement&quot;:{&quot;then&quot;:[{&quot;actionType&quot;:&quot;TAG&quot;,&quot;code&quot;:&quot;addDeTags&quot;,&quot;description&quot;:&quot;打标签&quot;,&quot;displayType&quot;:&quot;ACTION&quot;,&quot;fieldType&quot;:&quot;STRING&quot;,&quot;inputs&quot;:[&quot;321&quot;],&quot;name&quot;:&quot;<strong>addDeTags</strong>&quot;,&quot;outputType&quot;:&quot;const&quot;,&quot;sourceType&quot;:&quot;SAF&quot;,&quot;title&quot;:&quot;打标签&quot;,&quot;type&quot;:&quot;ACTION&quot;}]},&quot;ifStatement&quot;:{&quot;condition&quot;:{&quot;currentId&quot;:0,&quot;deepCount&quot;:1,&quot;list&quot;:[{&quot;currentId&quot;:0,&quot;deepCount&quot;:1,&quot;left&quot;:{&quot;code&quot;:&quot;queryPhoneSimulatorInfo(deviceToken)?.brand&quot;,&quot;description&quot;:&quot;设备信息-终端品牌&quot;,&quot;displayType&quot;:&quot;DEVICE&quot;,&quot;fieldType&quot;:&quot;STRING&quot;,&quot;functionCode&quot;:&quot;&quot;,&quot;functionName&quot;:&quot;&quot;,&quot;hasRightVariable&quot;:true,&quot;name&quot;:&quot;<strong>device_brand</strong>&quot;,&quot;sourceType&quot;:&quot;SAF&quot;,&quot;title&quot;:&quot;设备信息-终端品牌-brand&quot;,&quot;type&quot;:&quot;DEVICE&quot;},&quot;operatorCode&quot;:&quot;deInNameList&quot;,&quot;operatorName&quot;:&quot;在名单中&quot;,&quot;parentId&quot;:0,&quot;right&quot;:{&quot;code&quot;:&quot;nl_UN8otElLb490&quot;,&quot;description&quot;:&quot;描述11&quot;,&quot;displayType&quot;:&quot;NAME_LIST&quot;,&quot;name&quot;:&quot;nl_UN8otElLb490&quot;,&quot;rightVariableType&quot;:&quot;constant&quot;,&quot;sourceType&quot;:&quot;SAF&quot;,&quot;title&quot;:&quot;wtz_名单新建测试02&quot;,&quot;type&quot;:&quot;NAME_LIST&quot;},&quot;sequence&quot;:1},{&quot;currentId&quot;:0,&quot;deepCount&quot;:1,&quot;left&quot;:{&quot;code&quot;:&quot;deFunctionProcess(ip,\&quot;isIp\&quot;)&quot;,&quot;description&quot;:&quot;判断是否符合IPv4标准&quot;,&quot;displayType&quot;:&quot;SYSTEM_BIND&quot;,&quot;fieldType&quot;:&quot;BOOLEAN&quot;,&quot;functionCode&quot;:&quot;&quot;,&quot;functionName&quot;:&quot;&quot;,&quot;hasRightVariable&quot;:false,&quot;name&quot;:&quot;<strong>isIpAddressV4</strong>&quot;,&quot;outputThreshold&quot;:{},&quot;sourceType&quot;:&quot;SAF&quot;,&quot;title&quot;:&quot;IP是否符合IPV4格式&quot;,&quot;type&quot;:&quot;SYSTEM_BIND&quot;},&quot;operatorCode&quot;:&quot;boolIsTrue&quot;,&quot;operatorName&quot;:&quot;为true&quot;,&quot;parentId&quot;:0,&quot;right&quot;:{&quot;name&quot;:&quot;&quot;,&quot;rightVariableType&quot;:&quot;constant&quot;},&quot;sequence&quot;:2},{&quot;currentId&quot;:0,&quot;deepCount&quot;:1,&quot;list&quot;:[{&quot;currentId&quot;:0,&quot;deepCount&quot;:1,&quot;left&quot;:{&quot;code&quot;:&quot;parseIpV2(ip)?.cityId&quot;,&quot;description&quot;:&quot;通过IP地址库解析IP所在的城市Code,例如,输入“42.120.74.211”,经过该变量运算,输出“330100”。&quot;,&quot;displayType&quot;:&quot;SYSTEM_BIND&quot;,&quot;fieldType&quot;:&quot;STRING&quot;,&quot;functionCode&quot;:&quot;&quot;,&quot;functionName&quot;:&quot;&quot;,&quot;hasRightVariable&quot;:true,&quot;name&quot;:&quot;<strong>ipLocationCityCode</strong>&quot;,&quot;outputThreshold&quot;:{},&quot;sourceType&quot;:&quot;SAF&quot;,&quot;title&quot;:&quot;IP所在地_城市Code&quot;,&quot;type&quot;:&quot;SYSTEM_BIND&quot;},&quot;operatorCode&quot;:&quot;equals&quot;,&quot;operatorName&quot;:&quot;等于&quot;,&quot;parentId&quot;:0,&quot;right&quot;:{&quot;code&quot;:&quot;deFunctionProcess(ip,\&quot;getCountry\&quot;)&quot;,&quot;description&quot;:&quot;通过IP地址库解析IP所在的城市名称,例如,输入“42.120.74.211”,经过该变量运算,输出“CN”。&quot;,&quot;displayType&quot;:&quot;SYSTEM_BIND&quot;,&quot;fieldType&quot;:&quot;STRING&quot;,&quot;functionCode&quot;:&quot;&quot;,&quot;functionName&quot;:&quot;&quot;,&quot;name&quot;:&quot;<strong>ipLocationCountryId</strong>&quot;,&quot;outputThreshold&quot;:{},&quot;rightVariableType&quot;:&quot;variable&quot;,&quot;sourceType&quot;:&quot;SAF&quot;,&quot;title&quot;:&quot;IP所在地_国家Code&quot;,&quot;type&quot;:&quot;SYSTEM_BIND&quot;},&quot;sequence&quot;:3},{&quot;currentId&quot;:0,&quot;deepCount&quot;:1,&quot;list&quot;:[{&quot;currentId&quot;:0,&quot;deepCount&quot;:1,&quot;left&quot;:{&quot;code&quot;:&quot;parseIpV2(ip)?.cityId&quot;,&quot;description&quot;:&quot;通过IP地址库解析IP所在的城市Code,例如,输入“42.120.74.211”,经过该变量运算,输出“330100”。&quot;,&quot;displayType&quot;:&quot;SYSTEM_BIND&quot;,&quot;fieldType&quot;:&quot;STRING&quot;,&quot;functionCode&quot;:&quot;&quot;,&quot;functionName&quot;:&quot;&quot;,&quot;hasRightVariable&quot;:true,&quot;name&quot;:&quot;<strong>ipLocationCityCode</strong>&quot;,&quot;outputThreshold&quot;:{&quot;$ref&quot;:&quot;$.ifStatement.condition.list[2].list[0].left.outputThreshold&quot;},&quot;sourceType&quot;:&quot;SAF&quot;,&quot;title&quot;:&quot;IP所在地_城市Code&quot;,&quot;type&quot;:&quot;SYSTEM_BIND&quot;},&quot;operatorCode&quot;:&quot;deInNameList&quot;,&quot;operatorName&quot;:&quot;在名单中&quot;,&quot;parentId&quot;:0,&quot;right&quot;:{&quot;code&quot;:&quot;nl_NsVwBD2s11e0&quot;,&quot;displayType&quot;:&quot;NAME_LIST&quot;,&quot;name&quot;:&quot;nl_NsVwBD2s11e0&quot;,&quot;rightVariableType&quot;:&quot;constant&quot;,&quot;sourceType&quot;:&quot;SAF&quot;,&quot;title&quot;:&quot;device_block_list&quot;,&quot;type&quot;:&quot;NAME_LIST&quot;},&quot;sequence&quot;:4}],&quot;parentId&quot;:0,&quot;relationship&quot;:&quot;and&quot;}],&quot;parentId&quot;:0,&quot;relationship&quot;:&quot;and&quot;}],&quot;parentId&quot;:0,&quot;relationship&quot;:&quot;and&quot;},&quot;then&quot;:[{&quot;actionType&quot;:&quot;TAG&quot;,&quot;code&quot;:&quot;addDeTags&quot;,&quot;description&quot;:&quot;打标签&quot;,&quot;displayType&quot;:&quot;ACTION&quot;,&quot;fieldType&quot;:&quot;STRING&quot;,&quot;inputs&quot;:[&quot;123&quot;],&quot;name&quot;:&quot;<strong>addDeTags</strong>&quot;,&quot;outputType&quot;:&quot;const&quot;,&quot;sourceType&quot;:&quot;SAF&quot;,&quot;title&quot;:&quot;打标签&quot;,&quot;type&quot;:&quot;ACTION&quot;}]}}</p> */ public Builder ruleBody(String ruleBody) { this.ruleBody = ruleBody; return this; } /** * <p>Expression.</p> * * <strong>example:</strong> * <p>[{&quot;expressionName&quot;:&quot;代下单_记录日志&quot;,&quot;itemId&quot;:1,&quot;left&quot;:{&quot;name&quot;:&quot;dhcfX2v7670&quot;},&quot;operatorCode&quot;:&quot;gte&quot;,&quot;operatorName&quot;:&quot;大于等于&quot;,&quot;right&quot;:{&quot;fieldValue&quot;:&quot;2&quot;}}]</p> */ public Builder ruleExpressions(String ruleExpressions) { this.ruleExpressions = ruleExpressions; return this; } /** * <p>Policy ID</p> * * <strong>example:</strong> * <p>101804</p> */ public Builder ruleId(String ruleId) { this.ruleId = ruleId; return this; } /** * <p>Policy name</p> * * <strong>example:</strong> * <p>营销风险识别</p> */ public Builder ruleName(String ruleName) { this.ruleName = ruleName; return this; } /** * <p>Policy status</p> * * <strong>example:</strong> * <p>RUNNING</p> */ public Builder ruleStatus(String ruleStatus) { this.ruleStatus = ruleStatus; return this; } /** * <p>Rule type.</p> * * <strong>example:</strong> * <p>DSL</p> */ public Builder ruleType(String ruleType) { this.ruleType = ruleType; 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/DescribeRuleVersionListRequest.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 DescribeRuleVersionListRequest} extends {@link RequestModel} * * <p>DescribeRuleVersionListRequest</p> */ public class DescribeRuleVersionListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("consoleRuleId") private Long consoleRuleId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("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("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ruleId") private String ruleId; private DescribeRuleVersionListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.consoleRuleId = builder.consoleRuleId; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.regId = builder.regId; this.ruleId = builder.ruleId; } public static Builder builder() { return new Builder(); } public static DescribeRuleVersionListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return consoleRuleId */ public Long getConsoleRuleId() { return this.consoleRuleId; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } public static final class Builder extends Request.Builder<DescribeRuleVersionListRequest, Builder> { private String lang; private Long consoleRuleId; private Integer currentPage; private Integer pageSize; private String regId; private String ruleId; private Builder() { super(); } private Builder(DescribeRuleVersionListRequest request) { super(request); this.lang = request.lang; this.consoleRuleId = request.consoleRuleId; this.currentPage = request.currentPage; this.pageSize = request.pageSize; this.regId = request.regId; this.ruleId = request.ruleId; } /** * <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>Policy primary key ID</p> * * <strong>example:</strong> * <p>6851</p> */ public Builder consoleRuleId(Long consoleRuleId) { this.putQueryParameter("consoleRuleId", consoleRuleId); this.consoleRuleId = consoleRuleId; 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, default value is 10</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer 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>Policy ID</p> * * <strong>example:</strong> * <p>101804</p> */ public Builder ruleId(String ruleId) { this.putQueryParameter("ruleId", ruleId); this.ruleId = ruleId; return this; } @Override public DescribeRuleVersionListRequest build() { return new DescribeRuleVersionListRequest(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/DescribeRuleVersionListResponse.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 DescribeRuleVersionListResponse} extends {@link TeaModel} * * <p>DescribeRuleVersionListResponse</p> */ public class DescribeRuleVersionListResponse 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 DescribeRuleVersionListResponseBody body; private DescribeRuleVersionListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeRuleVersionListResponse 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 DescribeRuleVersionListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeRuleVersionListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeRuleVersionListResponseBody body); @Override DescribeRuleVersionListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeRuleVersionListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeRuleVersionListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeRuleVersionListResponse 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(DescribeRuleVersionListResponseBody body) { this.body = body; return this; } @Override public DescribeRuleVersionListResponse build() { return new DescribeRuleVersionListResponse(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/DescribeRuleVersionListResponseBody.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 DescribeRuleVersionListResponseBody} extends {@link TeaModel} * * <p>DescribeRuleVersionListResponseBody</p> */ public class DescribeRuleVersionListResponseBody 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 DescribeRuleVersionListResponseBody(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 DescribeRuleVersionListResponseBody 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(DescribeRuleVersionListResponseBody 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>Page size, 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>3</p> */ public Builder totalItem(Integer totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>7</p> */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } public DescribeRuleVersionListResponseBody build() { return new DescribeRuleVersionListResponseBody(this); } } /** * * {@link DescribeRuleVersionListResponseBody} extends {@link TeaModel} * * <p>DescribeRuleVersionListResponseBody</p> */ public static class ConsoleAudit extends TeaModel { @com.aliyun.core.annotation.NameInMap("applyUserId") private String applyUserId; @com.aliyun.core.annotation.NameInMap("applyUserName") private String applyUserName; @com.aliyun.core.annotation.NameInMap("auditMsg") private String auditMsg; @com.aliyun.core.annotation.NameInMap("auditRealUserId") private String auditRealUserId; @com.aliyun.core.annotation.NameInMap("auditRealUserName") private String auditRealUserName; @com.aliyun.core.annotation.NameInMap("auditRemark") private String auditRemark; @com.aliyun.core.annotation.NameInMap("auditStatus") private String auditStatus; @com.aliyun.core.annotation.NameInMap("auditTime") private Long auditTime; @com.aliyun.core.annotation.NameInMap("auditUserId") private String auditUserId; @com.aliyun.core.annotation.NameInMap("auditUserName") private String auditUserName; @com.aliyun.core.annotation.NameInMap("gmtCreate") private Long gmtCreate; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("relationExt") private String relationExt; @com.aliyun.core.annotation.NameInMap("relationId") private Long relationId; @com.aliyun.core.annotation.NameInMap("relationName") private String relationName; @com.aliyun.core.annotation.NameInMap("relationType") private String relationType; private ConsoleAudit(Builder builder) { this.applyUserId = builder.applyUserId; this.applyUserName = builder.applyUserName; this.auditMsg = builder.auditMsg; this.auditRealUserId = builder.auditRealUserId; this.auditRealUserName = builder.auditRealUserName; this.auditRemark = builder.auditRemark; this.auditStatus = builder.auditStatus; this.auditTime = builder.auditTime; this.auditUserId = builder.auditUserId; this.auditUserName = builder.auditUserName; this.gmtCreate = builder.gmtCreate; this.id = builder.id; this.relationExt = builder.relationExt; this.relationId = builder.relationId; this.relationName = builder.relationName; this.relationType = builder.relationType; } public static Builder builder() { return new Builder(); } public static ConsoleAudit create() { return builder().build(); } /** * @return applyUserId */ public String getApplyUserId() { return this.applyUserId; } /** * @return applyUserName */ public String getApplyUserName() { return this.applyUserName; } /** * @return auditMsg */ public String getAuditMsg() { return this.auditMsg; } /** * @return auditRealUserId */ public String getAuditRealUserId() { return this.auditRealUserId; } /** * @return auditRealUserName */ public String getAuditRealUserName() { return this.auditRealUserName; } /** * @return auditRemark */ public String getAuditRemark() { return this.auditRemark; } /** * @return auditStatus */ public String getAuditStatus() { return this.auditStatus; } /** * @return auditTime */ public Long getAuditTime() { return this.auditTime; } /** * @return auditUserId */ public String getAuditUserId() { return this.auditUserId; } /** * @return auditUserName */ public String getAuditUserName() { return this.auditUserName; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return id */ public Long getId() { return this.id; } /** * @return relationExt */ public String getRelationExt() { return this.relationExt; } /** * @return relationId */ public Long getRelationId() { return this.relationId; } /** * @return relationName */ public String getRelationName() { return this.relationName; } /** * @return relationType */ public String getRelationType() { return this.relationType; } public static final class Builder { private String applyUserId; private String applyUserName; private String auditMsg; private String auditRealUserId; private String auditRealUserName; private String auditRemark; private String auditStatus; private Long auditTime; private String auditUserId; private String auditUserName; private Long gmtCreate; private Long id; private String relationExt; private Long relationId; private String relationName; private String relationType; private Builder() { } private Builder(ConsoleAudit model) { this.applyUserId = model.applyUserId; this.applyUserName = model.applyUserName; this.auditMsg = model.auditMsg; this.auditRealUserId = model.auditRealUserId; this.auditRealUserName = model.auditRealUserName; this.auditRemark = model.auditRemark; this.auditStatus = model.auditStatus; this.auditTime = model.auditTime; this.auditUserId = model.auditUserId; this.auditUserName = model.auditUserName; this.gmtCreate = model.gmtCreate; this.id = model.id; this.relationExt = model.relationExt; this.relationId = model.relationId; this.relationName = model.relationName; this.relationType = model.relationType; } /** * <p>Initiator UID</p> * * <strong>example:</strong> * <p>1519714049632764</p> */ public Builder applyUserId(String applyUserId) { this.applyUserId = applyUserId; return this; } /** * <p>Initiator name</p> * * <strong>example:</strong> * <p>root</p> */ public Builder applyUserName(String applyUserName) { this.applyUserName = applyUserName; return this; } /** * <p>Approval comment</p> * * <strong>example:</strong> * <p>同意</p> */ public Builder auditMsg(String auditMsg) { this.auditMsg = auditMsg; return this; } /** * <p>Final approver UID</p> * * <strong>example:</strong> * <p>1519714049632764</p> */ public Builder auditRealUserId(String auditRealUserId) { this.auditRealUserId = auditRealUserId; return this; } /** * <p>Final approver name</p> * * <strong>example:</strong> * <p>root</p> */ public Builder auditRealUserName(String auditRealUserName) { this.auditRealUserName = auditRealUserName; return this; } /** * <p>Approver&quot;s remarks.</p> * * <strong>example:</strong> * <p>备注</p> */ public Builder auditRemark(String auditRemark) { this.auditRemark = auditRemark; return this; } /** * <p>Approval status</p> * * <strong>example:</strong> * <p>AGREE</p> */ public Builder auditStatus(String auditStatus) { this.auditStatus = auditStatus; return this; } /** * <p>Approval time.</p> * * <strong>example:</strong> * <p>1545726028000</p> */ public Builder auditTime(Long auditTime) { this.auditTime = auditTime; return this; } /** * <p>Designated approver UID</p> * * <strong>example:</strong> * <p>1519714049632764</p> */ public Builder auditUserId(String auditUserId) { this.auditUserId = auditUserId; return this; } /** * <p>Designated auditor&quot;s name</p> * * <strong>example:</strong> * <p>root</p> */ public Builder auditUserName(String auditUserName) { this.auditUserName = auditUserName; return this; } /** * <p>Creation time.</p> * * <strong>example:</strong> * <p>1545726028000</p> */ public Builder gmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * <p>Primary key ID</p> * * <strong>example:</strong> * <p>1728</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Information of related others (in JSON format)</p> * * <strong>example:</strong> * <p>{}</p> */ public Builder relationExt(String relationExt) { this.relationExt = relationExt; return this; } /** * <p>ID of the associated transaction</p> * * <strong>example:</strong> * <p>123</p> */ public Builder relationId(Long relationId) { this.relationId = relationId; return this; } /** * <p>Name of the associated item</p> * * <strong>example:</strong> * <p>营销风险识别</p> */ public Builder relationName(String relationName) { this.relationName = relationName; return this; } /** * <p>Type of approval (e.g., <code>rule</code> for policy approval)</p> * * <strong>example:</strong> * <p>RULE</p> */ public Builder relationType(String relationType) { this.relationType = relationType; return this; } public ConsoleAudit build() { return new ConsoleAudit(this); } } } /** * * {@link DescribeRuleVersionListResponseBody} extends {@link TeaModel} * * <p>DescribeRuleVersionListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("consoleAudit") private ConsoleAudit consoleAudit; @com.aliyun.core.annotation.NameInMap("consoleRuleId") private Long consoleRuleId; @com.aliyun.core.annotation.NameInMap("consoleRuleMemo") private String consoleRuleMemo; @com.aliyun.core.annotation.NameInMap("consoleRuleName") private String consoleRuleName; @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.NameInMap("eventType") private String eventType; @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("lastOperator") private String lastOperator; @com.aliyun.core.annotation.NameInMap("priority") private Long priority; @com.aliyun.core.annotation.NameInMap("ruleId") private String ruleId; @com.aliyun.core.annotation.NameInMap("ruleStatus") private String ruleStatus; @com.aliyun.core.annotation.NameInMap("ruleType") private String ruleType; @com.aliyun.core.annotation.NameInMap("version") private Long version; private ResultObject(Builder builder) { this.consoleAudit = builder.consoleAudit; this.consoleRuleId = builder.consoleRuleId; this.consoleRuleMemo = builder.consoleRuleMemo; this.consoleRuleName = builder.consoleRuleName; this.eventCode = builder.eventCode; this.eventType = builder.eventType; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.id = builder.id; this.lastOperator = builder.lastOperator; this.priority = builder.priority; this.ruleId = builder.ruleId; this.ruleStatus = builder.ruleStatus; this.ruleType = builder.ruleType; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return consoleAudit */ public ConsoleAudit getConsoleAudit() { return this.consoleAudit; } /** * @return consoleRuleId */ public Long getConsoleRuleId() { return this.consoleRuleId; } /** * @return consoleRuleMemo */ public String getConsoleRuleMemo() { return this.consoleRuleMemo; } /** * @return consoleRuleName */ public String getConsoleRuleName() { return this.consoleRuleName; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return eventType */ public String getEventType() { return this.eventType; } /** * @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 lastOperator */ public String getLastOperator() { return this.lastOperator; } /** * @return priority */ public Long getPriority() { return this.priority; } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } /** * @return ruleStatus */ public String getRuleStatus() { return this.ruleStatus; } /** * @return ruleType */ public String getRuleType() { return this.ruleType; } /** * @return version */ public Long getVersion() { return this.version; } public static final class Builder { private ConsoleAudit consoleAudit; private Long consoleRuleId; private String consoleRuleMemo; private String consoleRuleName; private String eventCode; private String eventType; private Long gmtCreate; private Long gmtModified; private Long id; private String lastOperator; private Long priority; private String ruleId; private String ruleStatus; private String ruleType; private Long version; private Builder() { } private Builder(ResultObject model) { this.consoleAudit = model.consoleAudit; this.consoleRuleId = model.consoleRuleId; this.consoleRuleMemo = model.consoleRuleMemo; this.consoleRuleName = model.consoleRuleName; this.eventCode = model.eventCode; this.eventType = model.eventType; this.gmtCreate = model.gmtCreate; this.gmtModified = model.gmtModified; this.id = model.id; this.lastOperator = model.lastOperator; this.priority = model.priority; this.ruleId = model.ruleId; this.ruleStatus = model.ruleStatus; this.ruleType = model.ruleType; this.version = model.version; } /** * <p>Audit object</p> */ public Builder consoleAudit(ConsoleAudit consoleAudit) { this.consoleAudit = consoleAudit; return this; } /** * <p>Console rule ID.</p> * * <strong>example:</strong> * <p>6715</p> */ public Builder consoleRuleId(Long consoleRuleId) { this.consoleRuleId = consoleRuleId; return this; } /** * <p>Associated policy remarks</p> * * <strong>example:</strong> * <p>备注</p> */ public Builder consoleRuleMemo(String consoleRuleMemo) { this.consoleRuleMemo = consoleRuleMemo; return this; } /** * <p>Associated policy name</p> * * <strong>example:</strong> * <p>营销风险识别</p> */ public Builder consoleRuleName(String consoleRuleName) { this.consoleRuleName = consoleRuleName; 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 type</p> * * <strong>example:</strong> * <p>MAIN</p> */ public Builder eventType(String eventType) { this.eventType = eventType; 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 policy</p> * * <strong>example:</strong> * <p>376773</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>The user who last operated.</p> * * <strong>example:</strong> * <p>1519714049632764</p> */ public Builder lastOperator(String lastOperator) { this.lastOperator = lastOperator; return this; } /** * <p>Policy priority, the higher the number, the higher the priority.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder priority(Long priority) { this.priority = priority; return this; } /** * <p>Policy ID</p> * * <strong>example:</strong> * <p>102224</p> */ public Builder ruleId(String ruleId) { this.ruleId = ruleId; return this; } /** * <p>Policy status</p> * * <strong>example:</strong> * <p>RUNNING</p> */ public Builder ruleStatus(String ruleStatus) { this.ruleStatus = ruleStatus; return this; } /** * <p>Rule Type</p> * * <strong>example:</strong> * <p>DEFAULT</p> */ public Builder ruleType(String ruleType) { this.ruleType = ruleType; return this; } /** * <p>Version number</p> * * <strong>example:</strong> * <p>2</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/DescribeSDKDownloadListRequest.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 DescribeSDKDownloadListRequest} extends {@link RequestModel} * * <p>DescribeSDKDownloadListRequest</p> */ public class DescribeSDKDownloadListRequest 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("deviceType") private String deviceType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("listType") private String listType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeSDKDownloadListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.deviceType = builder.deviceType; this.listType = builder.listType; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeSDKDownloadListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return deviceType */ public String getDeviceType() { return this.deviceType; } /** * @return listType */ public String getListType() { return this.listType; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeSDKDownloadListRequest, Builder> { private String lang; private String deviceType; private String listType; private String regId; private Builder() { super(); } private Builder(DescribeSDKDownloadListRequest request) { super(request); this.lang = request.lang; this.deviceType = request.deviceType; this.listType = request.listType; 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>Device type.</p> * * <strong>example:</strong> * <p>ANDROID</p> */ public Builder deviceType(String deviceType) { this.putQueryParameter("deviceType", deviceType); this.deviceType = deviceType; return this; } /** * <p>Download type</p> * * <strong>example:</strong> * <p>OLD</p> */ public Builder listType(String listType) { this.putQueryParameter("listType", listType); this.listType = listType; 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 DescribeSDKDownloadListRequest build() { return new DescribeSDKDownloadListRequest(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/DescribeSDKDownloadListResponse.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 DescribeSDKDownloadListResponse} extends {@link TeaModel} * * <p>DescribeSDKDownloadListResponse</p> */ public class DescribeSDKDownloadListResponse 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 DescribeSDKDownloadListResponseBody body; private DescribeSDKDownloadListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSDKDownloadListResponse 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 DescribeSDKDownloadListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSDKDownloadListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSDKDownloadListResponseBody body); @Override DescribeSDKDownloadListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSDKDownloadListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSDKDownloadListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSDKDownloadListResponse 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(DescribeSDKDownloadListResponseBody body) { this.body = body; return this; } @Override public DescribeSDKDownloadListResponse build() { return new DescribeSDKDownloadListResponse(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/DescribeSDKDownloadListResponseBody.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 DescribeSDKDownloadListResponseBody} extends {@link TeaModel} * * <p>DescribeSDKDownloadListResponseBody</p> */ public class DescribeSDKDownloadListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeSDKDownloadListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSDKDownloadListResponseBody 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(DescribeSDKDownloadListResponseBody 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 DescribeSDKDownloadListResponseBody build() { return new DescribeSDKDownloadListResponseBody(this); } } /** * * {@link DescribeSDKDownloadListResponseBody} extends {@link TeaModel} * * <p>DescribeSDKDownloadListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("developer") private String developer; @com.aliyun.core.annotation.NameInMap("deviceType") private String deviceType; @com.aliyun.core.annotation.NameInMap("downloadUrl") private String downloadUrl; @com.aliyun.core.annotation.NameInMap("md5") private String md5; @com.aliyun.core.annotation.NameInMap("packageName") private String packageName; @com.aliyun.core.annotation.NameInMap("privacyLink") private String privacyLink; @com.aliyun.core.annotation.NameInMap("pushTime") private String pushTime; @com.aliyun.core.annotation.NameInMap("sdkVersion") private String sdkVersion; @com.aliyun.core.annotation.NameInMap("size") private String size; private ResultObject(Builder builder) { this.description = builder.description; this.developer = builder.developer; this.deviceType = builder.deviceType; this.downloadUrl = builder.downloadUrl; this.md5 = builder.md5; this.packageName = builder.packageName; this.privacyLink = builder.privacyLink; this.pushTime = builder.pushTime; this.sdkVersion = builder.sdkVersion; this.size = builder.size; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return description */ public String getDescription() { return this.description; } /** * @return developer */ public String getDeveloper() { return this.developer; } /** * @return deviceType */ public String getDeviceType() { return this.deviceType; } /** * @return downloadUrl */ public String getDownloadUrl() { return this.downloadUrl; } /** * @return md5 */ public String getMd5() { return this.md5; } /** * @return packageName */ public String getPackageName() { return this.packageName; } /** * @return privacyLink */ public String getPrivacyLink() { return this.privacyLink; } /** * @return pushTime */ public String getPushTime() { return this.pushTime; } /** * @return sdkVersion */ public String getSdkVersion() { return this.sdkVersion; } /** * @return size */ public String getSize() { return this.size; } public static final class Builder { private String description; private String developer; private String deviceType; private String downloadUrl; private String md5; private String packageName; private String privacyLink; private String pushTime; private String sdkVersion; private String size; private Builder() { } private Builder(ResultObject model) { this.description = model.description; this.developer = model.developer; this.deviceType = model.deviceType; this.downloadUrl = model.downloadUrl; this.md5 = model.md5; this.packageName = model.packageName; this.privacyLink = model.privacyLink; this.pushTime = model.pushTime; this.sdkVersion = model.sdkVersion; this.size = model.size; } /** * <p>Description information.</p> * * <strong>example:</strong> * <p>描述</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Developer</p> * * <strong>example:</strong> * <p>阿里云安全-风险识别</p> */ public Builder developer(String developer) { this.developer = developer; return this; } /** * <p>Device type.</p> * * <strong>example:</strong> * <p>ANDROID</p> */ public Builder deviceType(String deviceType) { this.deviceType = deviceType; return this; } /** * <p>Download URL.</p> * * <strong>example:</strong> * <p><a href="https://aliyun-xxxx.oss-cn-xxx.xxx.com/sdk/xxx/10056.1/Android-AliyunDeviceEnhance-10056.1-20250611.tgz">https://aliyun-xxxx.oss-cn-xxx.xxx.com/sdk/xxx/10056.1/Android-AliyunDeviceEnhance-10056.1-20250611.tgz</a></p> */ public Builder downloadUrl(String downloadUrl) { this.downloadUrl = downloadUrl; return this; } /** * <p>File MD5.</p> * * <strong>example:</strong> * <p>E582EEB6B4BC9B5CB168AA5A7DD0EE93</p> */ public Builder md5(String md5) { this.md5 = md5; return this; } /** * <p>Package name</p> * * <strong>example:</strong> * <p>net.security.device</p> */ public Builder packageName(String packageName) { this.packageName = packageName; return this; } /** * <p>Risk recognition SDK privacy policy link</p> * * <strong>example:</strong> * <p><a href="https://terms.aliyun.com/legal-agreement/terms/suit_bu1_ali_cloud/suit_bu1_ali_cloud202111120818_92724.html">https://terms.aliyun.com/legal-agreement/terms/suit_bu1_ali_cloud/suit_bu1_ali_cloud202111120818_92724.html</a></p> */ public Builder privacyLink(String privacyLink) { this.privacyLink = privacyLink; return this; } /** * <p>Release time</p> * * <strong>example:</strong> * <p>1751212800000</p> */ public Builder pushTime(String pushTime) { this.pushTime = pushTime; return this; } /** * <p>SDK version.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder sdkVersion(String sdkVersion) { this.sdkVersion = sdkVersion; return this; } /** * <p>Size</p> * * <strong>example:</strong> * <p>4.12 MB</p> */ public Builder size(String size) { this.size = size; 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/DescribeSafConsoleRequest.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 DescribeSafConsoleRequest} extends {@link RequestModel} * * <p>DescribeSafConsoleRequest</p> */ public class DescribeSafConsoleRequest 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("content") private String content; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("service") @com.aliyun.core.annotation.Validation(required = true) private String service; private DescribeSafConsoleRequest(Builder builder) { super(builder); this.lang = builder.lang; this.content = builder.content; this.service = builder.service; } public static Builder builder() { return new Builder(); } public static DescribeSafConsoleRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return content */ public String getContent() { return this.content; } /** * @return service */ public String getService() { return this.service; } public static final class Builder extends Request.Builder<DescribeSafConsoleRequest, Builder> { private String lang; private String content; private String service; private Builder() { super(); } private Builder(DescribeSafConsoleRequest request) { super(request); this.lang = request.lang; this.content = request.content; this.service = request.service; } /** * <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>Query content.</p> * * <strong>example:</strong> * <p>ei_riskLpInfo</p> */ public Builder content(String content) { this.putQueryParameter("content", content); this.content = content; return this; } /** * <p>Service to be called.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>ei_riskLpInfo</p> */ public Builder service(String service) { this.putQueryParameter("service", service); this.service = service; return this; } @Override public DescribeSafConsoleRequest build() { return new DescribeSafConsoleRequest(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/DescribeSafConsoleResponse.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 DescribeSafConsoleResponse} extends {@link TeaModel} * * <p>DescribeSafConsoleResponse</p> */ public class DescribeSafConsoleResponse 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 DescribeSafConsoleResponseBody body; private DescribeSafConsoleResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSafConsoleResponse 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 DescribeSafConsoleResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSafConsoleResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSafConsoleResponseBody body); @Override DescribeSafConsoleResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSafConsoleResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSafConsoleResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSafConsoleResponse 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(DescribeSafConsoleResponseBody body) { this.body = body; return this; } @Override public DescribeSafConsoleResponse build() { return new DescribeSafConsoleResponse(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/DescribeSafConsoleResponseBody.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 DescribeSafConsoleResponseBody} extends {@link TeaModel} * * <p>DescribeSafConsoleResponseBody</p> */ public class DescribeSafConsoleResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("bizData") private java.util.List<String> bizData; private DescribeSafConsoleResponseBody(Builder builder) { this.requestId = builder.requestId; this.bizData = builder.bizData; } public static Builder builder() { return new Builder(); } public static DescribeSafConsoleResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return bizData */ public java.util.List<String> getBizData() { return this.bizData; } public static final class Builder { private String requestId; private java.util.List<String> bizData; private Builder() { } private Builder(DescribeSafConsoleResponseBody model) { this.requestId = model.requestId; this.bizData = model.bizData; } /** * <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 bizData(java.util.List<String> bizData) { this.bizData = bizData; return this; } public DescribeSafConsoleResponseBody build() { return new DescribeSafConsoleResponseBody(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/DescribeSafDeOrderRequest.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 DescribeSafDeOrderRequest} extends {@link RequestModel} * * <p>DescribeSafDeOrderRequest</p> */ public class DescribeSafDeOrderRequest 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 Integer currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("endDate") private String endDate; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") private Integer 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("startDate") private String startDate; private DescribeSafDeOrderRequest(Builder builder) { super(builder); this.lang = builder.lang; this.currentPage = builder.currentPage; this.endDate = builder.endDate; this.pageSize = builder.pageSize; this.regId = builder.regId; this.startDate = builder.startDate; } public static Builder builder() { return new Builder(); } public static DescribeSafDeOrderRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return endDate */ public String getEndDate() { return this.endDate; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return startDate */ public String getStartDate() { return this.startDate; } public static final class Builder extends Request.Builder<DescribeSafDeOrderRequest, Builder> { private String lang; private Integer currentPage; private String endDate; private Integer pageSize; private String regId; private String startDate; private Builder() { super(); } private Builder(DescribeSafDeOrderRequest request) { super(request); this.lang = request.lang; this.currentPage = request.currentPage; this.endDate = request.endDate; this.pageSize = request.pageSize; this.regId = request.regId; this.startDate = request.startDate; } /** * <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>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>End date</p> * * <strong>example:</strong> * <p>1728008155799</p> */ public Builder endDate(String endDate) { this.putQueryParameter("endDate", endDate); this.endDate = endDate; return this; } /** * <p>Page size, default value is 10</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer 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>Start date.</p> * * <strong>example:</strong> * <p>1728008155799</p> */ public Builder startDate(String startDate) { this.putQueryParameter("startDate", startDate); this.startDate = startDate; return this; } @Override public DescribeSafDeOrderRequest build() { return new DescribeSafDeOrderRequest(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/DescribeSafDeOrderResponse.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 DescribeSafDeOrderResponse} extends {@link TeaModel} * * <p>DescribeSafDeOrderResponse</p> */ public class DescribeSafDeOrderResponse 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 DescribeSafDeOrderResponseBody body; private DescribeSafDeOrderResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSafDeOrderResponse 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 DescribeSafDeOrderResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSafDeOrderResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSafDeOrderResponseBody body); @Override DescribeSafDeOrderResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSafDeOrderResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSafDeOrderResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSafDeOrderResponse 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(DescribeSafDeOrderResponseBody body) { this.body = body; return this; } @Override public DescribeSafDeOrderResponse build() { return new DescribeSafDeOrderResponse(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/DescribeSafDeOrderResponseBody.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 DescribeSafDeOrderResponseBody} extends {@link TeaModel} * * <p>DescribeSafDeOrderResponseBody</p> */ public class DescribeSafDeOrderResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeSafDeOrderResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSafDeOrderResponseBody 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(DescribeSafDeOrderResponseBody 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 DescribeSafDeOrderResponseBody build() { return new DescribeSafDeOrderResponseBody(this); } } /** * * {@link DescribeSafDeOrderResponseBody} extends {@link TeaModel} * * <p>DescribeSafDeOrderResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("expirationDate") private Long expirationDate; @com.aliyun.core.annotation.NameInMap("openUserType") private Integer openUserType; private ResultObject(Builder builder) { this.expirationDate = builder.expirationDate; this.openUserType = builder.openUserType; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return expirationDate */ public Long getExpirationDate() { return this.expirationDate; } /** * @return openUserType */ public Integer getOpenUserType() { return this.openUserType; } public static final class Builder { private Long expirationDate; private Integer openUserType; private Builder() { } private Builder(ResultObject model) { this.expirationDate = model.expirationDate; this.openUserType = model.openUserType; } /** * <p>Expiration time</p> * * <strong>example:</strong> * <p>1728008155799</p> */ public Builder expirationDate(Long expirationDate) { this.expirationDate = expirationDate; return this; } /** * <p>Based on the product type subscribed by the customer, the console permissions are divided into three categories:</p> * <pre><code> 1. New Customer: Has not purchased/subscribed to any service. * 2. Old Customer (Subscription): Customers who have purchased the SAF product. * 3. Pay-As-You-Go: Customers who have purchased the SAF_BAG product or activated SAF_POS. * </code></pre> * * <strong>example:</strong> * <p>2</p> */ public Builder openUserType(Integer openUserType) { this.openUserType = openUserType; 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/DescribeSafOrderRequest.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 DescribeSafOrderRequest} extends {@link RequestModel} * * <p>DescribeSafOrderRequest</p> */ public class DescribeSafOrderRequest 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 Integer currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("endDate") private String endDate; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("exactProductCode") private String exactProductCode; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") private Integer 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("startDate") private String startDate; private DescribeSafOrderRequest(Builder builder) { super(builder); this.lang = builder.lang; this.currentPage = builder.currentPage; this.endDate = builder.endDate; this.exactProductCode = builder.exactProductCode; this.pageSize = builder.pageSize; this.regId = builder.regId; this.startDate = builder.startDate; } public static Builder builder() { return new Builder(); } public static DescribeSafOrderRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return endDate */ public String getEndDate() { return this.endDate; } /** * @return exactProductCode */ public String getExactProductCode() { return this.exactProductCode; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return startDate */ public String getStartDate() { return this.startDate; } public static final class Builder extends Request.Builder<DescribeSafOrderRequest, Builder> { private String lang; private Integer currentPage; private String endDate; private String exactProductCode; private Integer pageSize; private String regId; private String startDate; private Builder() { super(); } private Builder(DescribeSafOrderRequest request) { super(request); this.lang = request.lang; this.currentPage = request.currentPage; this.endDate = request.endDate; this.exactProductCode = request.exactProductCode; this.pageSize = request.pageSize; this.regId = request.regId; this.startDate = request.startDate; } /** * <p>Set the language type for request and response, 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(Integer currentPage) { this.putQueryParameter("currentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>End date.</p> * * <strong>example:</strong> * <p>1755076800000</p> */ public Builder endDate(String endDate) { this.putQueryParameter("endDate", endDate); this.endDate = endDate; return this; } /** * <p>Product code.</p> * * <strong>example:</strong> * <p>saf_de</p> */ public Builder exactProductCode(String exactProductCode) { this.putQueryParameter("exactProductCode", exactProductCode); this.exactProductCode = exactProductCode; return this; } /** * <p>Page size, default value is 10.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer 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>Start time.</p> * * <strong>example:</strong> * <p>1752076800000</p> */ public Builder startDate(String startDate) { this.putQueryParameter("startDate", startDate); this.startDate = startDate; return this; } @Override public DescribeSafOrderRequest build() { return new DescribeSafOrderRequest(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/DescribeSafOrderResponse.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 DescribeSafOrderResponse} extends {@link TeaModel} * * <p>DescribeSafOrderResponse</p> */ public class DescribeSafOrderResponse 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 DescribeSafOrderResponseBody body; private DescribeSafOrderResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSafOrderResponse 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 DescribeSafOrderResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSafOrderResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSafOrderResponseBody body); @Override DescribeSafOrderResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSafOrderResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSafOrderResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSafOrderResponse 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(DescribeSafOrderResponseBody body) { this.body = body; return this; } @Override public DescribeSafOrderResponse build() { return new DescribeSafOrderResponse(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/DescribeSafOrderResponseBody.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 DescribeSafOrderResponseBody} extends {@link TeaModel} * * <p>DescribeSafOrderResponseBody</p> */ public class DescribeSafOrderResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeSafOrderResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSafOrderResponseBody 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(DescribeSafOrderResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object.</p> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } public DescribeSafOrderResponseBody build() { return new DescribeSafOrderResponseBody(this); } } /** * * {@link DescribeSafOrderResponseBody} extends {@link TeaModel} * * <p>DescribeSafOrderResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("expirationDate") private Long expirationDate; private ResultObject(Builder builder) { this.expirationDate = builder.expirationDate; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return expirationDate */ public Long getExpirationDate() { return this.expirationDate; } public static final class Builder { private Long expirationDate; private Builder() { } private Builder(ResultObject model) { this.expirationDate = model.expirationDate; } /** * <p>Expiration date (timestamp).</p> * * <strong>example:</strong> * <p>1755076800000</p> */ public Builder expirationDate(Long expirationDate) { this.expirationDate = expirationDate; 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/DescribeSafStartConfigRequest.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 DescribeSafStartConfigRequest} extends {@link RequestModel} * * <p>DescribeSafStartConfigRequest</p> */ public class DescribeSafStartConfigRequest 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 DescribeSafStartConfigRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeSafStartConfigRequest 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<DescribeSafStartConfigRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeSafStartConfigRequest 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 DescribeSafStartConfigRequest build() { return new DescribeSafStartConfigRequest(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/DescribeSafStartConfigResponse.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 DescribeSafStartConfigResponse} extends {@link TeaModel} * * <p>DescribeSafStartConfigResponse</p> */ public class DescribeSafStartConfigResponse 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 DescribeSafStartConfigResponseBody body; private DescribeSafStartConfigResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSafStartConfigResponse 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 DescribeSafStartConfigResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSafStartConfigResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSafStartConfigResponseBody body); @Override DescribeSafStartConfigResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSafStartConfigResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSafStartConfigResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSafStartConfigResponse 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(DescribeSafStartConfigResponseBody body) { this.body = body; return this; } @Override public DescribeSafStartConfigResponse build() { return new DescribeSafStartConfigResponse(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/DescribeSafStartConfigResponseBody.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 DescribeSafStartConfigResponseBody} extends {@link TeaModel} * * <p>DescribeSafStartConfigResponseBody</p> */ public class DescribeSafStartConfigResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeSafStartConfigResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSafStartConfigResponseBody 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(DescribeSafStartConfigResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } public DescribeSafStartConfigResponseBody build() { return new DescribeSafStartConfigResponseBody(this); } } /** * * {@link DescribeSafStartConfigResponseBody} extends {@link TeaModel} * * <p>DescribeSafStartConfigResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("deviceTypes") private java.util.List<String> deviceTypes; @com.aliyun.core.annotation.NameInMap("eventCodes") private java.util.List<String> eventCodes; @com.aliyun.core.annotation.NameInMap("languages") private java.util.List<String> languages; @com.aliyun.core.annotation.NameInMap("serverRegions") private java.util.List<String> serverRegions; private ResultObject(Builder builder) { this.deviceTypes = builder.deviceTypes; this.eventCodes = builder.eventCodes; this.languages = builder.languages; this.serverRegions = builder.serverRegions; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return deviceTypes */ public java.util.List<String> getDeviceTypes() { return this.deviceTypes; } /** * @return eventCodes */ public java.util.List<String> getEventCodes() { return this.eventCodes; } /** * @return languages */ public java.util.List<String> getLanguages() { return this.languages; } /** * @return serverRegions */ public java.util.List<String> getServerRegions() { return this.serverRegions; } public static final class Builder { private java.util.List<String> deviceTypes; private java.util.List<String> eventCodes; private java.util.List<String> languages; private java.util.List<String> serverRegions; private Builder() { } private Builder(ResultObject model) { this.deviceTypes = model.deviceTypes; this.eventCodes = model.eventCodes; this.languages = model.languages; this.serverRegions = model.serverRegions; } /** * <p>List of device types.</p> */ public Builder deviceTypes(java.util.List<String> deviceTypes) { this.deviceTypes = deviceTypes; return this; } /** * <p>Event codes.</p> */ public Builder eventCodes(java.util.List<String> eventCodes) { this.eventCodes = eventCodes; return this; } /** * <p>Configuration language details.</p> */ public Builder languages(java.util.List<String> languages) { this.languages = languages; return this; } /** * <p>Server region</p> */ public Builder serverRegions(java.util.List<String> serverRegions) { this.serverRegions = serverRegions; 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/DescribeSafStartStepsRequest.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 DescribeSafStartStepsRequest} extends {@link RequestModel} * * <p>DescribeSafStartStepsRequest</p> */ public class DescribeSafStartStepsRequest 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("aliyunServer") private Boolean aliyunServer; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("deviceTypesStr") private String deviceTypesStr; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("language") private String language; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("serverRegion") private String serverRegion; private DescribeSafStartStepsRequest(Builder builder) { super(builder); this.lang = builder.lang; this.aliyunServer = builder.aliyunServer; this.deviceTypesStr = builder.deviceTypesStr; this.eventCode = builder.eventCode; this.language = builder.language; this.regId = builder.regId; this.serverRegion = builder.serverRegion; } public static Builder builder() { return new Builder(); } public static DescribeSafStartStepsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return aliyunServer */ public Boolean getAliyunServer() { return this.aliyunServer; } /** * @return deviceTypesStr */ public String getDeviceTypesStr() { return this.deviceTypesStr; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return language */ public String getLanguage() { return this.language; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return serverRegion */ public String getServerRegion() { return this.serverRegion; } public static final class Builder extends Request.Builder<DescribeSafStartStepsRequest, Builder> { private String lang; private Boolean aliyunServer; private String deviceTypesStr; private String eventCode; private String language; private String regId; private String serverRegion; private Builder() { super(); } private Builder(DescribeSafStartStepsRequest request) { super(request); this.lang = request.lang; this.aliyunServer = request.aliyunServer; this.deviceTypesStr = request.deviceTypesStr; this.eventCode = request.eventCode; this.language = request.language; this.regId = request.regId; this.serverRegion = request.serverRegion; } /** * <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>Whether the server is an Alibaba Cloud server</p> * <p>true or false</p> * * <strong>example:</strong> * <p>true</p> */ public Builder aliyunServer(Boolean aliyunServer) { this.putQueryParameter("aliyunServer", aliyunServer); this.aliyunServer = aliyunServer; return this; } /** * <p>Used to receive a collection of strings from the frontend that POP cannot accept</p> * <p>Device type</p> * * <strong>example:</strong> * <p>ios</p> */ public Builder deviceTypesStr(String deviceTypesStr) { this.putQueryParameter("deviceTypesStr", deviceTypesStr); this.deviceTypesStr = deviceTypesStr; return this; } /** * <p>Event code</p> * * <strong>example:</strong> * <p>de_ahqido8038</p> */ public Builder eventCode(String eventCode) { this.putQueryParameter("eventCode", eventCode); this.eventCode = eventCode; return this; } /** * <p>Language, parameters can be passed</p> * <ul> * <li>zh-CN: Chinese (default)</li> * <li>en-US: English</li> * </ul> * * <strong>example:</strong> * <p>zh_CN</p> */ public Builder language(String language) { this.putQueryParameter("language", language); this.language = language; 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>Server region</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder serverRegion(String serverRegion) { this.putQueryParameter("serverRegion", serverRegion); this.serverRegion = serverRegion; return this; } @Override public DescribeSafStartStepsRequest build() { return new DescribeSafStartStepsRequest(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/DescribeSafStartStepsResponse.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 DescribeSafStartStepsResponse} extends {@link TeaModel} * * <p>DescribeSafStartStepsResponse</p> */ public class DescribeSafStartStepsResponse 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 DescribeSafStartStepsResponseBody body; private DescribeSafStartStepsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSafStartStepsResponse 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 DescribeSafStartStepsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSafStartStepsResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSafStartStepsResponseBody body); @Override DescribeSafStartStepsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSafStartStepsResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSafStartStepsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSafStartStepsResponse 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(DescribeSafStartStepsResponseBody body) { this.body = body; return this; } @Override public DescribeSafStartStepsResponse build() { return new DescribeSafStartStepsResponse(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/DescribeSafStartStepsResponseBody.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 DescribeSafStartStepsResponseBody} extends {@link TeaModel} * * <p>DescribeSafStartStepsResponseBody</p> */ public class DescribeSafStartStepsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeSafStartStepsResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSafStartStepsResponseBody 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(DescribeSafStartStepsResponseBody 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 DescribeSafStartStepsResponseBody build() { return new DescribeSafStartStepsResponseBody(this); } } /** * * {@link DescribeSafStartStepsResponseBody} extends {@link TeaModel} * * <p>DescribeSafStartStepsResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("content") private String content; @com.aliyun.core.annotation.NameInMap("id") private String id; @com.aliyun.core.annotation.NameInMap("type") private String type; private ResultObject(Builder builder) { this.content = builder.content; this.id = builder.id; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return content */ public String getContent() { return this.content; } /** * @return id */ public String getId() { return this.id; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String content; private String id; private String type; private Builder() { } private Builder(ResultObject model) { this.content = model.content; this.id = model.id; this.type = model.type; } /** * <p>Step content</p> * * <strong>example:</strong> * <p><a href="https://help.aliyun.com/document_detail/177689.html">https://help.aliyun.com/document_detail/177689.html</a></p> */ public Builder content(String content) { this.content = content; return this; } /** * <p>Step title</p> * * <strong>example:</strong> * <p>ios</p> */ public Builder id(String id) { this.id = id; return this; } /** * <p>Type</p> * * <strong>example:</strong> * <p>URL</p> */ public Builder type(String type) { this.type = type; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeSafTagListRequest.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 DescribeSafTagListRequest} extends {@link RequestModel} * * <p>DescribeSafTagListRequest</p> */ public class DescribeSafTagListRequest 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("TagName") private String tagName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("apiId") private String apiId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("currentPage") private String currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") private String pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeSafTagListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.tagName = builder.tagName; this.apiId = builder.apiId; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeSafTagListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return tagName */ public String getTagName() { return this.tagName; } /** * @return apiId */ public String getApiId() { return this.apiId; } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeSafTagListRequest, Builder> { private String lang; private String tagName; private String apiId; private String currentPage; private String pageSize; private String regId; private Builder() { super(); } private Builder(DescribeSafTagListRequest request) { super(request); this.lang = request.lang; this.tagName = request.tagName; this.apiId = request.apiId; this.currentPage = request.currentPage; this.pageSize = request.pageSize; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Tag name. Fuzzy search.</p> * * <strong>example:</strong> * <p>rn0301</p> */ public Builder tagName(String tagName) { this.putQueryParameter("TagName", tagName); this.tagName = tagName; return this; } /** * <p>API service ID.</p> * * <strong>example:</strong> * <p>34</p> */ public Builder apiId(String apiId) { this.putQueryParameter("apiId", apiId); this.apiId = apiId; 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>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 DescribeSafTagListRequest build() { return new DescribeSafTagListRequest(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/DescribeSafTagListResponse.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 DescribeSafTagListResponse} extends {@link TeaModel} * * <p>DescribeSafTagListResponse</p> */ public class DescribeSafTagListResponse 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 DescribeSafTagListResponseBody body; private DescribeSafTagListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSafTagListResponse 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 DescribeSafTagListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSafTagListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSafTagListResponseBody body); @Override DescribeSafTagListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSafTagListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSafTagListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSafTagListResponse 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(DescribeSafTagListResponseBody body) { this.body = body; return this; } @Override public DescribeSafTagListResponse build() { return new DescribeSafTagListResponse(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/DescribeSafTagListResponseBody.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 DescribeSafTagListResponseBody} extends {@link TeaModel} * * <p>DescribeSafTagListResponseBody</p> */ public class DescribeSafTagListResponseBody 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 DescribeSafTagListResponseBody(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 DescribeSafTagListResponseBody 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(DescribeSafTagListResponseBody 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 DescribeSafTagListResponseBody build() { return new DescribeSafTagListResponseBody(this); } } /** * * {@link DescribeSafTagListResponseBody} extends {@link TeaModel} * * <p>DescribeSafTagListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("tagDesc") private String tagDesc; @com.aliyun.core.annotation.NameInMap("tagMean") private String tagMean; @com.aliyun.core.annotation.NameInMap("tagName") private String tagName; @com.aliyun.core.annotation.NameInMap("tagState") private String tagState; @com.aliyun.core.annotation.NameInMap("tagType") private String tagType; @com.aliyun.core.annotation.NameInMap("tagUid") private String tagUid; @com.aliyun.core.annotation.NameInMap("updateTime") private String updateTime; private ResultObject(Builder builder) { this.tagDesc = builder.tagDesc; this.tagMean = builder.tagMean; this.tagName = builder.tagName; this.tagState = builder.tagState; this.tagType = builder.tagType; this.tagUid = builder.tagUid; this.updateTime = builder.updateTime; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return tagDesc */ public String getTagDesc() { return this.tagDesc; } /** * @return tagMean */ public String getTagMean() { return this.tagMean; } /** * @return tagName */ public String getTagName() { return this.tagName; } /** * @return tagState */ public String getTagState() { return this.tagState; } /** * @return tagType */ public String getTagType() { return this.tagType; } /** * @return tagUid */ public String getTagUid() { return this.tagUid; } /** * @return updateTime */ public String getUpdateTime() { return this.updateTime; } public static final class Builder { private String tagDesc; private String tagMean; private String tagName; private String tagState; private String tagType; private String tagUid; private String updateTime; private Builder() { } private Builder(ResultObject model) { this.tagDesc = model.tagDesc; this.tagMean = model.tagMean; this.tagName = model.tagName; this.tagState = model.tagState; this.tagType = model.tagType; this.tagUid = model.tagUid; this.updateTime = model.updateTime; } /** * <p>Tag description.</p> * * <strong>example:</strong> * <p>依赖IP画像模型识别输出风险高、中高、中的判定\n数据来源主要基于IP的网络属性数据和对黑产行为轨迹的情报监控数据,涵盖可识别检测IP网络属性特征、恶意属性等特征\n而模型评分的高中低主要是根据当前IP号段命中风险行为的恶意程度和种类来判定的\n备注:以下rn0311、rn0312、rn0313、rn0314、rn0315属于IP画像模型针对当前请求IP识别出的风险类别</p> */ public Builder tagDesc(String tagDesc) { this.tagDesc = tagDesc; return this; } /** * <p>Tag meaning.</p> * * <strong>example:</strong> * <p>IP风险评分高</p> */ public Builder tagMean(String tagMean) { this.tagMean = tagMean; return this; } /** * <p>Tag name.</p> * * <strong>example:</strong> * <p>rn0301</p> */ public Builder tagName(String tagName) { this.tagName = tagName; return this; } /** * <p>Tag identifier.</p> * * <strong>example:</strong> * <p>rn0301</p> */ public Builder tagState(String tagState) { this.tagState = tagState; return this; } /** * <p>Tag type.</p> * * <strong>example:</strong> * <p>IP风险类</p> */ public Builder tagType(String tagType) { this.tagType = tagType; return this; } /** * <p>Unique identifier of the tag key.</p> * * <strong>example:</strong> * <p>rn0301</p> */ public Builder tagUid(String tagUid) { this.tagUid = tagUid; return this; } /** * <p>Update time.</p> * * <strong>example:</strong> * <p>1684744034000</p> */ public Builder updateTime(String updateTime) { this.updateTime = updateTime; 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/DescribeSampleBatchOssPolicyRequest.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 DescribeSampleBatchOssPolicyRequest} extends {@link RequestModel} * * <p>DescribeSampleBatchOssPolicyRequest</p> */ public class DescribeSampleBatchOssPolicyRequest 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("batchName") private String batchName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeSampleBatchOssPolicyRequest(Builder builder) { super(builder); this.lang = builder.lang; this.batchName = builder.batchName; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeSampleBatchOssPolicyRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return batchName */ public String getBatchName() { return this.batchName; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeSampleBatchOssPolicyRequest, Builder> { private String lang; private String batchName; private String regId; private Builder() { super(); } private Builder(DescribeSampleBatchOssPolicyRequest request) { super(request); this.lang = request.lang; this.batchName = request.batchName; 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>Sample batch name</p> * * <strong>example:</strong> * <p>白样本</p> */ public Builder batchName(String batchName) { this.putQueryParameter("batchName", batchName); this.batchName = batchName; 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 DescribeSampleBatchOssPolicyRequest build() { return new DescribeSampleBatchOssPolicyRequest(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/DescribeSampleBatchOssPolicyResponse.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 DescribeSampleBatchOssPolicyResponse} extends {@link TeaModel} * * <p>DescribeSampleBatchOssPolicyResponse</p> */ public class DescribeSampleBatchOssPolicyResponse 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 DescribeSampleBatchOssPolicyResponseBody body; private DescribeSampleBatchOssPolicyResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSampleBatchOssPolicyResponse 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 DescribeSampleBatchOssPolicyResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSampleBatchOssPolicyResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSampleBatchOssPolicyResponseBody body); @Override DescribeSampleBatchOssPolicyResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSampleBatchOssPolicyResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSampleBatchOssPolicyResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSampleBatchOssPolicyResponse 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(DescribeSampleBatchOssPolicyResponseBody body) { this.body = body; return this; } @Override public DescribeSampleBatchOssPolicyResponse build() { return new DescribeSampleBatchOssPolicyResponse(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/DescribeSampleBatchOssPolicyResponseBody.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 DescribeSampleBatchOssPolicyResponseBody} extends {@link TeaModel} * * <p>DescribeSampleBatchOssPolicyResponseBody</p> */ public class DescribeSampleBatchOssPolicyResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("AccessId") private String accessId; @com.aliyun.core.annotation.NameInMap("Host") private String host; @com.aliyun.core.annotation.NameInMap("Key") private String key; @com.aliyun.core.annotation.NameInMap("Policy") private String policy; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Signature") private String signature; private DescribeSampleBatchOssPolicyResponseBody(Builder builder) { this.accessId = builder.accessId; this.host = builder.host; this.key = builder.key; this.policy = builder.policy; this.requestId = builder.requestId; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static DescribeSampleBatchOssPolicyResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return host */ public String getHost() { return this.host; } /** * @return key */ public String getKey() { return this.key; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String host; private String key; private String policy; private String requestId; private String signature; private Builder() { } private Builder(DescribeSampleBatchOssPolicyResponseBody model) { this.accessId = model.accessId; this.host = model.host; this.key = model.key; this.policy = model.policy; this.requestId = model.requestId; this.signature = model.signature; } /** * <p>OSS Access ID</p> * * <strong>example:</strong> * <p>LTAxxxxxxxxxxxx</p> */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * <p>OSS Domain</p> * * <strong>example:</strong> * <p>172.25.126.234</p> */ public Builder host(String host) { this.host = host; return this; } /** * <p>Key required for file upload.</p> * * <strong>example:</strong> * <p>saf/de/namelist/e924/ufzgsedX9bd3a7</p> */ public Builder key(String key) { this.key = key; return this; } /** * <p>OSS Security Policy</p> * * <strong>example:</strong> * <p>eyJleHBpcmF0aW9uIjoiMjAyNS0wNy0zMFQwNjowNTo0OS45NTRaIiwiY29uZGl0aW9ucyI6W1siY29udGVudC1sZW5ndGgtcmFuZ2UiLDAsMTA0ODU3NjAwMF0sWyJlcSIsIiRrZXkiLCJzYWZcL2RlXC9uYW1lbGlzdFwvZTkyNFwvdWZ6Z3NlZFg5Ymxxxxxxxxxxx</p> */ public Builder policy(String policy) { this.policy = policy; return this; } /** * <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>OSS Signature</p> * * <strong>example:</strong> * <p>PoAUQ//RusJJFIvCrn36O3+mM/U=</p> */ public Builder signature(String signature) { this.signature = signature; return this; } public DescribeSampleBatchOssPolicyResponseBody build() { return new DescribeSampleBatchOssPolicyResponseBody(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/DescribeSampleDataByBatchUUidPageRequest.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 DescribeSampleDataByBatchUUidPageRequest} extends {@link RequestModel} * * <p>DescribeSampleDataByBatchUUidPageRequest</p> */ public class DescribeSampleDataByBatchUUidPageRequest 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("currentPage") private Integer currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("dataValue") private String dataValue; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") private Integer 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("updateBeginTime") private Long updateBeginTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("updateEndTime") private Long updateEndTime; private DescribeSampleDataByBatchUUidPageRequest(Builder builder) { super(builder); this.lang = builder.lang; this.batchUuid = builder.batchUuid; this.currentPage = builder.currentPage; this.dataValue = builder.dataValue; this.pageSize = builder.pageSize; this.regId = builder.regId; this.updateBeginTime = builder.updateBeginTime; this.updateEndTime = builder.updateEndTime; } public static Builder builder() { return new Builder(); } public static DescribeSampleDataByBatchUUidPageRequest 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 currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return dataValue */ public String getDataValue() { return this.dataValue; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return updateBeginTime */ public Long getUpdateBeginTime() { return this.updateBeginTime; } /** * @return updateEndTime */ public Long getUpdateEndTime() { return this.updateEndTime; } public static final class Builder extends Request.Builder<DescribeSampleDataByBatchUUidPageRequest, Builder> { private String lang; private String batchUuid; private Integer currentPage; private String dataValue; private Integer pageSize; private String regId; private Long updateBeginTime; private Long updateEndTime; private Builder() { super(); } private Builder(DescribeSampleDataByBatchUUidPageRequest request) { super(request); this.lang = request.lang; this.batchUuid = request.batchUuid; this.currentPage = request.currentPage; this.dataValue = request.dataValue; this.pageSize = request.pageSize; this.regId = request.regId; this.updateBeginTime = request.updateBeginTime; this.updateEndTime = request.updateEndTime; } /** * <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>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>Content of the list entered in the text box</p> * * <strong>example:</strong> * <p>1770000000,1770000001</p> */ public Builder dataValue(String dataValue) { this.putQueryParameter("dataValue", dataValue); this.dataValue = dataValue; return this; } /** * <p>Page size, default value is 10</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer 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>Start time</p> * * <strong>example:</strong> * <p>1724986526000</p> */ public Builder updateBeginTime(Long updateBeginTime) { this.putQueryParameter("updateBeginTime", updateBeginTime); this.updateBeginTime = updateBeginTime; return this; } /** * <p>End time</p> * * <strong>example:</strong> * <p>1724986526000</p> */ public Builder updateEndTime(Long updateEndTime) { this.putQueryParameter("updateEndTime", updateEndTime); this.updateEndTime = updateEndTime; return this; } @Override public DescribeSampleDataByBatchUUidPageRequest build() { return new DescribeSampleDataByBatchUUidPageRequest(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/DescribeSampleDataByBatchUUidPageResponse.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 DescribeSampleDataByBatchUUidPageResponse} extends {@link TeaModel} * * <p>DescribeSampleDataByBatchUUidPageResponse</p> */ public class DescribeSampleDataByBatchUUidPageResponse 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 DescribeSampleDataByBatchUUidPageResponseBody body; private DescribeSampleDataByBatchUUidPageResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSampleDataByBatchUUidPageResponse 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 DescribeSampleDataByBatchUUidPageResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSampleDataByBatchUUidPageResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSampleDataByBatchUUidPageResponseBody body); @Override DescribeSampleDataByBatchUUidPageResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSampleDataByBatchUUidPageResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSampleDataByBatchUUidPageResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSampleDataByBatchUUidPageResponse 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(DescribeSampleDataByBatchUUidPageResponseBody body) { this.body = body; return this; } @Override public DescribeSampleDataByBatchUUidPageResponse build() { return new DescribeSampleDataByBatchUUidPageResponse(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/DescribeSampleDataByBatchUUidPageResponseBody.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 DescribeSampleDataByBatchUUidPageResponseBody} extends {@link TeaModel} * * <p>DescribeSampleDataByBatchUUidPageResponseBody</p> */ public class DescribeSampleDataByBatchUUidPageResponseBody 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 DescribeSampleDataByBatchUUidPageResponseBody(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 DescribeSampleDataByBatchUUidPageResponseBody 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(DescribeSampleDataByBatchUUidPageResponseBody 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>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>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 DescribeSampleDataByBatchUUidPageResponseBody build() { return new DescribeSampleDataByBatchUUidPageResponseBody(this); } } /** * * {@link DescribeSampleDataByBatchUUidPageResponseBody} extends {@link TeaModel} * * <p>DescribeSampleDataByBatchUUidPageResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("batchName") private String batchName; @com.aliyun.core.annotation.NameInMap("creator") private String creator; @com.aliyun.core.annotation.NameInMap("dataTagType") private String dataTagType; @com.aliyun.core.annotation.NameInMap("dataValue") private String dataValue; @com.aliyun.core.annotation.NameInMap("gmtCreate") private Long gmtCreate; @com.aliyun.core.annotation.NameInMap("gmtModified") private Long gmtModified; @com.aliyun.core.annotation.NameInMap("lastSourceType") private String lastSourceType; @com.aliyun.core.annotation.NameInMap("uuid") private String uuid; @com.aliyun.core.annotation.NameInMap("version") private Integer version; private ResultObject(Builder builder) { this.batchName = builder.batchName; this.creator = builder.creator; this.dataTagType = builder.dataTagType; this.dataValue = builder.dataValue; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.lastSourceType = builder.lastSourceType; this.uuid = builder.uuid; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return batchName */ public String getBatchName() { return this.batchName; } /** * @return creator */ public String getCreator() { return this.creator; } /** * @return dataTagType */ public String getDataTagType() { return this.dataTagType; } /** * @return dataValue */ public String getDataValue() { return this.dataValue; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return gmtModified */ public Long getGmtModified() { return this.gmtModified; } /** * @return lastSourceType */ public String getLastSourceType() { return this.lastSourceType; } /** * @return uuid */ public String getUuid() { return this.uuid; } /** * @return version */ public Integer getVersion() { return this.version; } public static final class Builder { private String batchName; private String creator; private String dataTagType; private String dataValue; private Long gmtCreate; private Long gmtModified; private String lastSourceType; private String uuid; private Integer version; private Builder() { } private Builder(ResultObject model) { this.batchName = model.batchName; this.creator = model.creator; this.dataTagType = model.dataTagType; this.dataValue = model.dataValue; this.gmtCreate = model.gmtCreate; this.gmtModified = model.gmtModified; this.lastSourceType = model.lastSourceType; this.uuid = model.uuid; this.version = model.version; } /** * <p>Sample batch name</p> * * <strong>example:</strong> * <p>白样本</p> */ public Builder batchName(String batchName) { this.batchName = batchName; return this; } /** * <p>Creator</p> * * <strong>example:</strong> * <p>1519714049632764</p> */ public Builder creator(String creator) { this.creator = creator; return this; } /** * <p>Sample type</p> * * <strong>example:</strong> * <p>pass</p> */ public Builder dataTagType(String dataTagType) { this.dataTagType = dataTagType; return this; } /** * <p>Data content</p> * * <strong>example:</strong> * <p>177000001</p> */ public Builder dataValue(String dataValue) { this.dataValue = dataValue; 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>Last source</p> * * <strong>example:</strong> * <p>Console-Text</p> */ public Builder lastSourceType(String lastSourceType) { this.lastSourceType = lastSourceType; return this; } /** * <p>Sample batch UUID</p> * * <strong>example:</strong> * <p>203f1ae65c0a41a49dc4f8a47946caa2</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } /** * <p>Version</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/DescribeSampleDataListRequest.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 DescribeSampleDataListRequest} extends {@link RequestModel} * * <p>DescribeSampleDataListRequest</p> */ public class DescribeSampleDataListRequest 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("deleteTag") private String deleteTag; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") private String pageSize; @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("sampleId") private Long sampleId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("scene") private String scene; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("status") private String status; private DescribeSampleDataListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.currentPage = builder.currentPage; this.deleteTag = builder.deleteTag; this.pageSize = builder.pageSize; this.queryContent = builder.queryContent; this.regId = builder.regId; this.sampleId = builder.sampleId; this.scene = builder.scene; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static DescribeSampleDataListRequest 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 deleteTag */ public String getDeleteTag() { return this.deleteTag; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return queryContent */ public String getQueryContent() { return this.queryContent; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return sampleId */ public Long getSampleId() { return this.sampleId; } /** * @return scene */ public String getScene() { return this.scene; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder extends Request.Builder<DescribeSampleDataListRequest, Builder> { private String lang; private String currentPage; private String deleteTag; private String pageSize; private String queryContent; private String regId; private Long sampleId; private String scene; private String status; private Builder() { super(); } private Builder(DescribeSampleDataListRequest request) { super(request); this.lang = request.lang; this.currentPage = request.currentPage; this.deleteTag = request.deleteTag; this.pageSize = request.pageSize; this.queryContent = request.queryContent; this.regId = request.regId; this.sampleId = request.sampleId; this.scene = request.scene; this.status = request.status; } /** * <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>Deletion status</p> * * <strong>example:</strong> * <p>DELETE</p> */ public Builder deleteTag(String deleteTag) { this.putQueryParameter("deleteTag", deleteTag); this.deleteTag = deleteTag; 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>Query content</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>Sample ID.</p> * * <strong>example:</strong> * <p>5467</p> */ public Builder sampleId(Long sampleId) { this.putQueryParameter("sampleId", sampleId); this.sampleId = sampleId; return this; } /** * <p>Scene</p> * * <strong>example:</strong> * <p>1</p> */ public Builder scene(String scene) { this.putQueryParameter("scene", scene); this.scene = scene; return this; } /** * <p>Status.</p> * * <strong>example:</strong> * <p>CREATE</p> */ public Builder status(String status) { this.putQueryParameter("status", status); this.status = status; return this; } @Override public DescribeSampleDataListRequest build() { return new DescribeSampleDataListRequest(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/DescribeSampleDataListResponse.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 DescribeSampleDataListResponse} extends {@link TeaModel} * * <p>DescribeSampleDataListResponse</p> */ public class DescribeSampleDataListResponse 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 DescribeSampleDataListResponseBody body; private DescribeSampleDataListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSampleDataListResponse 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 DescribeSampleDataListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSampleDataListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSampleDataListResponseBody body); @Override DescribeSampleDataListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSampleDataListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSampleDataListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSampleDataListResponse 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(DescribeSampleDataListResponseBody body) { this.body = body; return this; } @Override public DescribeSampleDataListResponse build() { return new DescribeSampleDataListResponse(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/DescribeSampleDataListResponseBody.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 DescribeSampleDataListResponseBody} extends {@link TeaModel} * * <p>DescribeSampleDataListResponseBody</p> */ public class DescribeSampleDataListResponseBody 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 DescribeSampleDataListResponseBody(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 DescribeSampleDataListResponseBody 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(DescribeSampleDataListResponseBody 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 DescribeSampleDataListResponseBody build() { return new DescribeSampleDataListResponseBody(this); } } /** * * {@link DescribeSampleDataListResponseBody} extends {@link TeaModel} * * <p>DescribeSampleDataListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("classificationType") private String classificationType; @com.aliyun.core.annotation.NameInMap("dataDistributed") private String dataDistributed; @com.aliyun.core.annotation.NameInMap("dataTitle") private String dataTitle; @com.aliyun.core.annotation.NameInMap("deleteTag") private String deleteTag; @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("name") private String name; @com.aliyun.core.annotation.NameInMap("normalSize") private Long normalSize; @com.aliyun.core.annotation.NameInMap("recallConfig") private String recallConfig; @com.aliyun.core.annotation.NameInMap("riskSize") private Long riskSize; @com.aliyun.core.annotation.NameInMap("riskValue") private String riskValue; @com.aliyun.core.annotation.NameInMap("sampleLabelDetail") private String sampleLabelDetail; @com.aliyun.core.annotation.NameInMap("sampleSize") private Long sampleSize; @com.aliyun.core.annotation.NameInMap("scene") private String scene; @com.aliyun.core.annotation.NameInMap("status") private String status; @com.aliyun.core.annotation.NameInMap("storePath") private String storePath; @com.aliyun.core.annotation.NameInMap("storeType") private String storeType; @com.aliyun.core.annotation.NameInMap("supportRecall") private String supportRecall; @com.aliyun.core.annotation.NameInMap("userId") private Long userId; @com.aliyun.core.annotation.NameInMap("version") private Integer version; private ResultObject(Builder builder) { this.classificationType = builder.classificationType; this.dataDistributed = builder.dataDistributed; this.dataTitle = builder.dataTitle; this.deleteTag = builder.deleteTag; this.description = builder.description; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.id = builder.id; this.name = builder.name; this.normalSize = builder.normalSize; this.recallConfig = builder.recallConfig; this.riskSize = builder.riskSize; this.riskValue = builder.riskValue; this.sampleLabelDetail = builder.sampleLabelDetail; this.sampleSize = builder.sampleSize; this.scene = builder.scene; this.status = builder.status; this.storePath = builder.storePath; this.storeType = builder.storeType; this.supportRecall = builder.supportRecall; this.userId = builder.userId; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return classificationType */ public String getClassificationType() { return this.classificationType; } /** * @return dataDistributed */ public String getDataDistributed() { return this.dataDistributed; } /** * @return dataTitle */ public String getDataTitle() { return this.dataTitle; } /** * @return deleteTag */ public String getDeleteTag() { return this.deleteTag; } /** * @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 name */ public String getName() { return this.name; } /** * @return normalSize */ public Long getNormalSize() { return this.normalSize; } /** * @return recallConfig */ public String getRecallConfig() { return this.recallConfig; } /** * @return riskSize */ public Long getRiskSize() { return this.riskSize; } /** * @return riskValue */ public String getRiskValue() { return this.riskValue; } /** * @return sampleLabelDetail */ public String getSampleLabelDetail() { return this.sampleLabelDetail; } /** * @return sampleSize */ public Long getSampleSize() { return this.sampleSize; } /** * @return scene */ public String getScene() { return this.scene; } /** * @return status */ public String getStatus() { return this.status; } /** * @return storePath */ public String getStorePath() { return this.storePath; } /** * @return storeType */ public String getStoreType() { return this.storeType; } /** * @return supportRecall */ public String getSupportRecall() { return this.supportRecall; } /** * @return userId */ public Long getUserId() { return this.userId; } /** * @return version */ public Integer getVersion() { return this.version; } public static final class Builder { private String classificationType; private String dataDistributed; private String dataTitle; private String deleteTag; private String description; private Long gmtCreate; private Long gmtModified; private Long id; private String name; private Long normalSize; private String recallConfig; private Long riskSize; private String riskValue; private String sampleLabelDetail; private Long sampleSize; private String scene; private String status; private String storePath; private String storeType; private String supportRecall; private Long userId; private Integer version; private Builder() { } private Builder(ResultObject model) { this.classificationType = model.classificationType; this.dataDistributed = model.dataDistributed; this.dataTitle = model.dataTitle; this.deleteTag = model.deleteTag; this.description = model.description; this.gmtCreate = model.gmtCreate; this.gmtModified = model.gmtModified; this.id = model.id; this.name = model.name; this.normalSize = model.normalSize; this.recallConfig = model.recallConfig; this.riskSize = model.riskSize; this.riskValue = model.riskValue; this.sampleLabelDetail = model.sampleLabelDetail; this.sampleSize = model.sampleSize; this.scene = model.scene; this.status = model.status; this.storePath = model.storePath; this.storeType = model.storeType; this.supportRecall = model.supportRecall; this.userId = model.userId; this.version = model.version; } /** * <p>Classification type, binary or multi-class.</p> * * <strong>example:</strong> * <p>二分类</p> */ public Builder classificationType(String classificationType) { this.classificationType = classificationType; return this; } /** * <p>Criterion value for sample data calculation</p> * * <strong>example:</strong> * <p>{&quot;正样本&quot;:&quot;1&quot;,&quot;负样本&quot;:&quot;1&quot;}</p> */ public Builder dataDistributed(String dataDistributed) { this.dataDistributed = dataDistributed; return this; } /** * <p>First row of sample data. Used to define the values of each column.</p> * * <strong>example:</strong> * <p>17700000000</p> */ public Builder dataTitle(String dataTitle) { this.dataTitle = dataTitle; return this; } /** * <p>Deletion tag.</p> * * <strong>example:</strong> * <p>DELETE</p> */ public Builder deleteTag(String deleteTag) { this.deleteTag = deleteTag; 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</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Name</p> * * <strong>example:</strong> * <p>注册样本</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Number of normal samples</p> * * <strong>example:</strong> * <p>999</p> */ public Builder normalSize(Long normalSize) { this.normalSize = normalSize; return this; } /** * <p>Recall configuration</p> * * <strong>example:</strong> * <p>{&quot;variables&quot;:&quot;a,b,c&quot;}</p> */ public Builder recallConfig(String recallConfig) { this.recallConfig = recallConfig; return this; } /** * <p>Number of risk samples</p> * * <strong>example:</strong> * <p>1</p> */ public Builder riskSize(Long riskSize) { this.riskSize = riskSize; return this; } /** * <p>Specified risk value</p> * * <strong>example:</strong> * <p>black</p> */ public Builder riskValue(String riskValue) { this.riskValue = riskValue; return this; } /** * <p>Sample label details</p> * * <strong>example:</strong> * <p>[{&quot;type&quot;:&quot;positive&quot;,&quot;size&quot;:&quot;2000&quot;,&quot;value&quot;:1},{&quot;type&quot;:&quot;negative&quot;,&quot;size&quot;:1900,&quot;value&quot;:0}]</p> */ public Builder sampleLabelDetail(String sampleLabelDetail) { this.sampleLabelDetail = sampleLabelDetail; return this; } /** * <p>Sample size</p> * * <strong>example:</strong> * <p>1000</p> */ public Builder sampleSize(Long sampleSize) { this.sampleSize = sampleSize; return this; } /** * <p>Scene code</p> * * <strong>example:</strong> * <p>account_abuse_detection</p> */ public Builder scene(String scene) { this.scene = scene; return this; } /** * <p>Status.</p> * * <strong>example:</strong> * <p>CREATE</p> */ public Builder status(String status) { this.status = status; return this; } /** * <p>Storage path</p> * * <strong>example:</strong> * <p>saf/de/sample/3dc2spspHKq4G3YI9d08</p> */ public Builder storePath(String storePath) { this.storePath = storePath; return this; } /** * <p>Storage type</p> * * <strong>example:</strong> * <p>OSS</p> */ public Builder storeType(String storeType) { this.storeType = storeType; return this; } /** * <p>Whether recall is supported</p> * * <strong>example:</strong> * <p>true</p> */ public Builder supportRecall(String supportRecall) { this.supportRecall = supportRecall; return this; } /** * <p>User UID</p> * * <strong>example:</strong> * <p>1519714049632764</p> */ public Builder userId(Long userId) { this.userId = userId; return this; } /** * <p>Version</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/DescribeSampleDataPageRequest.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 DescribeSampleDataPageRequest} extends {@link RequestModel} * * <p>DescribeSampleDataPageRequest</p> */ public class DescribeSampleDataPageRequest 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 Integer currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("dataValue") private String dataValue; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") private Integer 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("updateBeginTime") private Long updateBeginTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("updateEndTime") private Long updateEndTime; private DescribeSampleDataPageRequest(Builder builder) { super(builder); this.lang = builder.lang; this.currentPage = builder.currentPage; this.dataValue = builder.dataValue; this.pageSize = builder.pageSize; this.regId = builder.regId; this.updateBeginTime = builder.updateBeginTime; this.updateEndTime = builder.updateEndTime; } public static Builder builder() { return new Builder(); } public static DescribeSampleDataPageRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return dataValue */ public String getDataValue() { return this.dataValue; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return updateBeginTime */ public Long getUpdateBeginTime() { return this.updateBeginTime; } /** * @return updateEndTime */ public Long getUpdateEndTime() { return this.updateEndTime; } public static final class Builder extends Request.Builder<DescribeSampleDataPageRequest, Builder> { private String lang; private Integer currentPage; private String dataValue; private Integer pageSize; private String regId; private Long updateBeginTime; private Long updateEndTime; private Builder() { super(); } private Builder(DescribeSampleDataPageRequest request) { super(request); this.lang = request.lang; this.currentPage = request.currentPage; this.dataValue = request.dataValue; this.pageSize = request.pageSize; this.regId = request.regId; this.updateBeginTime = request.updateBeginTime; this.updateEndTime = request.updateEndTime; } /** * <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(Integer currentPage) { this.putQueryParameter("currentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Content of the list entered in the text box</p> * * <strong>example:</strong> * <p>1770000000</p> */ public Builder dataValue(String dataValue) { this.putQueryParameter("dataValue", dataValue); this.dataValue = dataValue; return this; } /** * <p>Page size, default value is 10</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer 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>Start time</p> * * <strong>example:</strong> * <p>1730429469000</p> */ public Builder updateBeginTime(Long updateBeginTime) { this.putQueryParameter("updateBeginTime", updateBeginTime); this.updateBeginTime = updateBeginTime; return this; } /** * <p>End time</p> * * <strong>example:</strong> * <p>1730429469000</p> */ public Builder updateEndTime(Long updateEndTime) { this.putQueryParameter("updateEndTime", updateEndTime); this.updateEndTime = updateEndTime; return this; } @Override public DescribeSampleDataPageRequest build() { return new DescribeSampleDataPageRequest(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/DescribeSampleDataPageResponse.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 DescribeSampleDataPageResponse} extends {@link TeaModel} * * <p>DescribeSampleDataPageResponse</p> */ public class DescribeSampleDataPageResponse 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 DescribeSampleDataPageResponseBody body; private DescribeSampleDataPageResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSampleDataPageResponse 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 DescribeSampleDataPageResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSampleDataPageResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSampleDataPageResponseBody body); @Override DescribeSampleDataPageResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSampleDataPageResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSampleDataPageResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSampleDataPageResponse 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(DescribeSampleDataPageResponseBody body) { this.body = body; return this; } @Override public DescribeSampleDataPageResponse build() { return new DescribeSampleDataPageResponse(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/DescribeSampleDataPageResponseBody.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 DescribeSampleDataPageResponseBody} extends {@link TeaModel} * * <p>DescribeSampleDataPageResponseBody</p> */ public class DescribeSampleDataPageResponseBody 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 DescribeSampleDataPageResponseBody(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 DescribeSampleDataPageResponseBody 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(DescribeSampleDataPageResponseBody 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>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>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 is 10.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>Returned object</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } /** * <p>Total number of items</p> * * <strong>example:</strong> * <p>3</p> */ public Builder totalItem(Integer totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } public DescribeSampleDataPageResponseBody build() { return new DescribeSampleDataPageResponseBody(this); } } /** * * {@link DescribeSampleDataPageResponseBody} extends {@link TeaModel} * * <p>DescribeSampleDataPageResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("creator") private String creator; @com.aliyun.core.annotation.NameInMap("dataTagType") private String dataTagType; @com.aliyun.core.annotation.NameInMap("dataValue") private String dataValue; @com.aliyun.core.annotation.NameInMap("gmtCreate") private Long gmtCreate; @com.aliyun.core.annotation.NameInMap("gmtModified") private Long gmtModified; @com.aliyun.core.annotation.NameInMap("lastSourceType") private String lastSourceType; @com.aliyun.core.annotation.NameInMap("updator") private String updator; @com.aliyun.core.annotation.NameInMap("uuid") private String uuid; @com.aliyun.core.annotation.NameInMap("version") private Integer version; private ResultObject(Builder builder) { this.creator = builder.creator; this.dataTagType = builder.dataTagType; this.dataValue = builder.dataValue; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.lastSourceType = builder.lastSourceType; this.updator = builder.updator; this.uuid = builder.uuid; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return creator */ public String getCreator() { return this.creator; } /** * @return dataTagType */ public String getDataTagType() { return this.dataTagType; } /** * @return dataValue */ public String getDataValue() { return this.dataValue; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return gmtModified */ public Long getGmtModified() { return this.gmtModified; } /** * @return lastSourceType */ public String getLastSourceType() { return this.lastSourceType; } /** * @return updator */ public String getUpdator() { return this.updator; } /** * @return uuid */ public String getUuid() { return this.uuid; } /** * @return version */ public Integer getVersion() { return this.version; } public static final class Builder { private String creator; private String dataTagType; private String dataValue; private Long gmtCreate; private Long gmtModified; private String lastSourceType; private String updator; private String uuid; private Integer version; private Builder() { } private Builder(ResultObject model) { this.creator = model.creator; this.dataTagType = model.dataTagType; this.dataValue = model.dataValue; this.gmtCreate = model.gmtCreate; this.gmtModified = model.gmtModified; this.lastSourceType = model.lastSourceType; this.updator = model.updator; this.uuid = model.uuid; this.version = model.version; } /** * <p>Creator</p> * * <strong>example:</strong> * <p>1519714049632764</p> */ public Builder creator(String creator) { this.creator = creator; return this; } /** * <p>Sample type</p> * * <strong>example:</strong> * <p>pass</p> */ public Builder dataTagType(String dataTagType) { this.dataTagType = dataTagType; return this; } /** * <p>Content of the list entered in the text box</p> * * <strong>example:</strong> * <p>1770000000</p> */ public Builder dataValue(String dataValue) { this.dataValue = dataValue; 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>Last source</p> * * <strong>example:</strong> * <p>Console-Text</p> */ public Builder lastSourceType(String lastSourceType) { this.lastSourceType = lastSourceType; return this; } /** * <p>Modifier</p> * * <strong>example:</strong> * <p>1519714049632764</p> */ public Builder updator(String updator) { this.updator = updator; return this; } /** * <p>UUID of the sample batch</p> * * <strong>example:</strong> * <p>48653f1372444c078f7b3d1c317d37dc</p> */ public Builder uuid(String uuid) { this.uuid = uuid; 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/DescribeSampleDemoDownloadUrlRequest.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 DescribeSampleDemoDownloadUrlRequest} extends {@link RequestModel} * * <p>DescribeSampleDemoDownloadUrlRequest</p> */ public class DescribeSampleDemoDownloadUrlRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("scene") @com.aliyun.core.annotation.Validation(required = true) private String scene; private DescribeSampleDemoDownloadUrlRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; this.scene = builder.scene; } public static Builder builder() { return new Builder(); } public static DescribeSampleDemoDownloadUrlRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return scene */ public String getScene() { return this.scene; } public static final class Builder extends Request.Builder<DescribeSampleDemoDownloadUrlRequest, Builder> { private String lang; private String regId; private String scene; private Builder() { super(); } private Builder(DescribeSampleDemoDownloadUrlRequest request) { super(request); this.lang = request.lang; 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>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } /** * <p>Scene code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>coupon_abuse_detection</p> */ public Builder scene(String scene) { this.putQueryParameter("scene", scene); this.scene = scene; return this; } @Override public DescribeSampleDemoDownloadUrlRequest build() { return new DescribeSampleDemoDownloadUrlRequest(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/DescribeSampleDemoDownloadUrlResponse.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 DescribeSampleDemoDownloadUrlResponse} extends {@link TeaModel} * * <p>DescribeSampleDemoDownloadUrlResponse</p> */ public class DescribeSampleDemoDownloadUrlResponse 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 DescribeSampleDemoDownloadUrlResponseBody body; private DescribeSampleDemoDownloadUrlResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSampleDemoDownloadUrlResponse 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 DescribeSampleDemoDownloadUrlResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSampleDemoDownloadUrlResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSampleDemoDownloadUrlResponseBody body); @Override DescribeSampleDemoDownloadUrlResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSampleDemoDownloadUrlResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSampleDemoDownloadUrlResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSampleDemoDownloadUrlResponse 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(DescribeSampleDemoDownloadUrlResponseBody body) { this.body = body; return this; } @Override public DescribeSampleDemoDownloadUrlResponse build() { return new DescribeSampleDemoDownloadUrlResponse(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/DescribeSampleDemoDownloadUrlResponseBody.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 DescribeSampleDemoDownloadUrlResponseBody} extends {@link TeaModel} * * <p>DescribeSampleDemoDownloadUrlResponseBody</p> */ public class DescribeSampleDemoDownloadUrlResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeSampleDemoDownloadUrlResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSampleDemoDownloadUrlResponseBody 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(DescribeSampleDemoDownloadUrlResponseBody 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 DescribeSampleDemoDownloadUrlResponseBody build() { return new DescribeSampleDemoDownloadUrlResponseBody(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/DescribeSampleDownloadUrlRequest.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 DescribeSampleDownloadUrlRequest} extends {@link RequestModel} * * <p>DescribeSampleDownloadUrlRequest</p> */ public class DescribeSampleDownloadUrlRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("sampleId") @com.aliyun.core.annotation.Validation(required = true) private Long sampleId; private DescribeSampleDownloadUrlRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; this.sampleId = builder.sampleId; } public static Builder builder() { return new Builder(); } public static DescribeSampleDownloadUrlRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return sampleId */ public Long getSampleId() { return this.sampleId; } public static final class Builder extends Request.Builder<DescribeSampleDownloadUrlRequest, Builder> { private String lang; private String regId; private Long sampleId; private Builder() { super(); } private Builder(DescribeSampleDownloadUrlRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; this.sampleId = request.sampleId; } /** * <p>Set the language type for request and response, default value is <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } /** * <p>Sample ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>5467</p> */ public Builder sampleId(Long sampleId) { this.putQueryParameter("sampleId", sampleId); this.sampleId = sampleId; return this; } @Override public DescribeSampleDownloadUrlRequest build() { return new DescribeSampleDownloadUrlRequest(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/DescribeSampleDownloadUrlResponse.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 DescribeSampleDownloadUrlResponse} extends {@link TeaModel} * * <p>DescribeSampleDownloadUrlResponse</p> */ public class DescribeSampleDownloadUrlResponse 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 DescribeSampleDownloadUrlResponseBody body; private DescribeSampleDownloadUrlResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSampleDownloadUrlResponse 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 DescribeSampleDownloadUrlResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSampleDownloadUrlResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSampleDownloadUrlResponseBody body); @Override DescribeSampleDownloadUrlResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSampleDownloadUrlResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSampleDownloadUrlResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSampleDownloadUrlResponse 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(DescribeSampleDownloadUrlResponseBody body) { this.body = body; return this; } @Override public DescribeSampleDownloadUrlResponse build() { return new DescribeSampleDownloadUrlResponse(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/DescribeSampleDownloadUrlResponseBody.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 DescribeSampleDownloadUrlResponseBody} extends {@link TeaModel} * * <p>DescribeSampleDownloadUrlResponseBody</p> */ public class DescribeSampleDownloadUrlResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeSampleDownloadUrlResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSampleDownloadUrlResponseBody 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(DescribeSampleDownloadUrlResponseBody 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 DescribeSampleDownloadUrlResponseBody build() { return new DescribeSampleDownloadUrlResponseBody(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/DescribeSampleInfoRequest.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 DescribeSampleInfoRequest} extends {@link RequestModel} * * <p>DescribeSampleInfoRequest</p> */ public class DescribeSampleInfoRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("versions") private Integer versions; private DescribeSampleInfoRequest(Builder builder) { super(builder); this.lang = builder.lang; this.id = builder.id; this.regId = builder.regId; this.versions = builder.versions; } public static Builder builder() { return new Builder(); } public static DescribeSampleInfoRequest 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; } /** * @return versions */ public Integer getVersions() { return this.versions; } public static final class Builder extends Request.Builder<DescribeSampleInfoRequest, Builder> { private String lang; private Long id; private String regId; private Integer versions; private Builder() { super(); } private Builder(DescribeSampleInfoRequest request) { super(request); this.lang = request.lang; this.id = request.id; this.regId = request.regId; this.versions = request.versions; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Primary key ID</p> * * <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; } /** * <p>Version number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder versions(Integer versions) { this.putQueryParameter("versions", versions); this.versions = versions; return this; } @Override public DescribeSampleInfoRequest build() { return new DescribeSampleInfoRequest(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/DescribeSampleInfoResponse.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 DescribeSampleInfoResponse} extends {@link TeaModel} * * <p>DescribeSampleInfoResponse</p> */ public class DescribeSampleInfoResponse 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 DescribeSampleInfoResponseBody body; private DescribeSampleInfoResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSampleInfoResponse 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 DescribeSampleInfoResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSampleInfoResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSampleInfoResponseBody body); @Override DescribeSampleInfoResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSampleInfoResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSampleInfoResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSampleInfoResponse 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(DescribeSampleInfoResponseBody body) { this.body = body; return this; } @Override public DescribeSampleInfoResponse build() { return new DescribeSampleInfoResponse(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/DescribeSampleInfoResponseBody.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 DescribeSampleInfoResponseBody} extends {@link TeaModel} * * <p>DescribeSampleInfoResponseBody</p> */ public class DescribeSampleInfoResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeSampleInfoResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSampleInfoResponseBody 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(DescribeSampleInfoResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } public DescribeSampleInfoResponseBody build() { return new DescribeSampleInfoResponseBody(this); } } /** * * {@link DescribeSampleInfoResponseBody} extends {@link TeaModel} * * <p>DescribeSampleInfoResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("sampleTags") private String sampleTags; @com.aliyun.core.annotation.NameInMap("sampleType") private String sampleType; @com.aliyun.core.annotation.NameInMap("sampleValue") private String sampleValue; @com.aliyun.core.annotation.NameInMap("updateTime") private String updateTime; @com.aliyun.core.annotation.NameInMap("version") private Integer version; private ResultObject(Builder builder) { this.id = builder.id; this.sampleTags = builder.sampleTags; this.sampleType = builder.sampleType; this.sampleValue = builder.sampleValue; this.updateTime = builder.updateTime; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return id */ public Long getId() { return this.id; } /** * @return sampleTags */ public String getSampleTags() { return this.sampleTags; } /** * @return sampleType */ public String getSampleType() { return this.sampleType; } /** * @return sampleValue */ public String getSampleValue() { return this.sampleValue; } /** * @return updateTime */ public String getUpdateTime() { return this.updateTime; } /** * @return version */ public Integer getVersion() { return this.version; } public static final class Builder { private Long id; private String sampleTags; private String sampleType; private String sampleValue; private String updateTime; private Integer version; private Builder() { } private Builder(ResultObject model) { this.id = model.id; this.sampleTags = model.sampleTags; this.sampleType = model.sampleType; this.sampleValue = model.sampleValue; this.updateTime = model.updateTime; this.version = model.version; } /** * <p>Primary key ID</p> * * <strong>example:</strong> * <p>3144</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Sample tags.</p> * * <strong>example:</strong> * <p>em0102</p> */ public Builder sampleTags(String sampleTags) { this.sampleTags = sampleTags; return this; } /** * <p>Sample type</p> * * <strong>example:</strong> * <p>PHONE</p> */ public Builder sampleType(String sampleType) { this.sampleType = sampleType; return this; } /** * <p>Sample value.</p> * * <strong>example:</strong> * <p>17700000000</p> */ public Builder sampleValue(String sampleValue) { this.sampleValue = sampleValue; return this; } /** * <p>Update time.</p> * * <strong>example:</strong> * <p>1753804800000</p> */ public Builder updateTime(String updateTime) { this.updateTime = updateTime; 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/DescribeSampleListRequest.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 DescribeSampleListRequest} extends {@link RequestModel} * * <p>DescribeSampleListRequest</p> */ public class DescribeSampleListRequest 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 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("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("sampleType") private String sampleType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("sampleValue") private String sampleValue; private DescribeSampleListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.regId = builder.regId; this.sampleType = builder.sampleType; this.sampleValue = builder.sampleValue; } public static Builder builder() { return new Builder(); } public static DescribeSampleListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return sampleType */ public String getSampleType() { return this.sampleType; } /** * @return sampleValue */ public String getSampleValue() { return this.sampleValue; } public static final class Builder extends Request.Builder<DescribeSampleListRequest, Builder> { private String lang; private Integer currentPage; private Integer pageSize; private String regId; private String sampleType; private String sampleValue; private Builder() { super(); } private Builder(DescribeSampleListRequest request) { super(request); this.lang = request.lang; this.currentPage = request.currentPage; this.pageSize = request.pageSize; this.regId = request.regId; this.sampleType = request.sampleType; this.sampleValue = request.sampleValue; } /** * <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(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>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>Sample type</p> * * <strong>example:</strong> * <p>PHONE</p> */ public Builder sampleType(String sampleType) { this.putQueryParameter("sampleType", sampleType); this.sampleType = sampleType; return this; } /** * <p>Sample data value.</p> * * <strong>example:</strong> * <p>1770000000</p> */ public Builder sampleValue(String sampleValue) { this.putQueryParameter("sampleValue", sampleValue); this.sampleValue = sampleValue; return this; } @Override public DescribeSampleListRequest build() { return new DescribeSampleListRequest(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/DescribeSampleListResponse.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 DescribeSampleListResponse} extends {@link TeaModel} * * <p>DescribeSampleListResponse</p> */ public class DescribeSampleListResponse 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 DescribeSampleListResponseBody body; private DescribeSampleListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSampleListResponse 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 DescribeSampleListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSampleListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSampleListResponseBody body); @Override DescribeSampleListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSampleListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSampleListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSampleListResponse 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(DescribeSampleListResponseBody body) { this.body = body; return this; } @Override public DescribeSampleListResponse build() { return new DescribeSampleListResponse(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/DescribeSampleListResponseBody.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 DescribeSampleListResponseBody} extends {@link TeaModel} * * <p>DescribeSampleListResponseBody</p> */ public class DescribeSampleListResponseBody 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 DescribeSampleListResponseBody(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 DescribeSampleListResponseBody 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(DescribeSampleListResponseBody 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 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 DescribeSampleListResponseBody build() { return new DescribeSampleListResponseBody(this); } } /** * * {@link DescribeSampleListResponseBody} extends {@link TeaModel} * * <p>DescribeSampleListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("sampleTags") private String sampleTags; @com.aliyun.core.annotation.NameInMap("sampleType") private Integer sampleType; @com.aliyun.core.annotation.NameInMap("sampleValue") private String sampleValue; @com.aliyun.core.annotation.NameInMap("updateTime") private Long updateTime; @com.aliyun.core.annotation.NameInMap("version") private Integer version; private ResultObject(Builder builder) { this.id = builder.id; this.sampleTags = builder.sampleTags; this.sampleType = builder.sampleType; this.sampleValue = builder.sampleValue; this.updateTime = builder.updateTime; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return id */ public Long getId() { return this.id; } /** * @return sampleTags */ public String getSampleTags() { return this.sampleTags; } /** * @return sampleType */ public Integer getSampleType() { return this.sampleType; } /** * @return sampleValue */ public String getSampleValue() { return this.sampleValue; } /** * @return updateTime */ public Long getUpdateTime() { return this.updateTime; } /** * @return version */ public Integer getVersion() { return this.version; } public static final class Builder { private Long id; private String sampleTags; private Integer sampleType; private String sampleValue; private Long updateTime; private Integer version; private Builder() { } private Builder(ResultObject model) { this.id = model.id; this.sampleTags = model.sampleTags; this.sampleType = model.sampleType; this.sampleValue = model.sampleValue; this.updateTime = model.updateTime; this.version = model.version; } /** * <p>Database ID.</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Sample tags.</p> * * <strong>example:</strong> * <p>rm0102</p> */ public Builder sampleTags(String sampleTags) { this.sampleTags = sampleTags; return this; } /** * <p>Sample type</p> * * <strong>example:</strong> * <p>PHONE</p> */ public Builder sampleType(Integer sampleType) { this.sampleType = sampleType; return this; } /** * <p>Sample value.</p> * * <strong>example:</strong> * <p>1770000000</p> */ public Builder sampleValue(String sampleValue) { this.sampleValue = sampleValue; return this; } /** * <p>Update time.</p> * * <strong>example:</strong> * <p>1699450018265</p> */ public Builder updateTime(Long updateTime) { this.updateTime = updateTime; 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/DescribeSampleSceneListRequest.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 DescribeSampleSceneListRequest} extends {@link RequestModel} * * <p>DescribeSampleSceneListRequest</p> */ public class DescribeSampleSceneListRequest 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 DescribeSampleSceneListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeSampleSceneListRequest 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<DescribeSampleSceneListRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeSampleSceneListRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; } /** * <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>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 DescribeSampleSceneListRequest build() { return new DescribeSampleSceneListRequest(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/DescribeSampleSceneListResponse.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 DescribeSampleSceneListResponse} extends {@link TeaModel} * * <p>DescribeSampleSceneListResponse</p> */ public class DescribeSampleSceneListResponse 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 DescribeSampleSceneListResponseBody body; private DescribeSampleSceneListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSampleSceneListResponse 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 DescribeSampleSceneListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSampleSceneListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSampleSceneListResponseBody body); @Override DescribeSampleSceneListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSampleSceneListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSampleSceneListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSampleSceneListResponse 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(DescribeSampleSceneListResponseBody body) { this.body = body; return this; } @Override public DescribeSampleSceneListResponse build() { return new DescribeSampleSceneListResponse(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/DescribeSampleSceneListResponseBody.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 DescribeSampleSceneListResponseBody} extends {@link TeaModel} * * <p>DescribeSampleSceneListResponseBody</p> */ public class DescribeSampleSceneListResponseBody 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 DescribeSampleSceneListResponseBody(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 DescribeSampleSceneListResponseBody 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(DescribeSampleSceneListResponseBody 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 DescribeSampleSceneListResponseBody build() { return new DescribeSampleSceneListResponseBody(this); } } /** * * {@link DescribeSampleSceneListResponseBody} extends {@link TeaModel} * * <p>DescribeSampleSceneListResponseBody</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 type.</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>Creator.</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>Task ID.</p> * * <strong>example:</strong> * <p>3144</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/DescribeSampleTagListRequest.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 DescribeSampleTagListRequest} extends {@link RequestModel} * * <p>DescribeSampleTagListRequest</p> */ public class DescribeSampleTagListRequest 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 DescribeSampleTagListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeSampleTagListRequest 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<DescribeSampleTagListRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeSampleTagListRequest 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 DescribeSampleTagListRequest build() { return new DescribeSampleTagListRequest(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/DescribeSampleTagListResponse.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 DescribeSampleTagListResponse} extends {@link TeaModel} * * <p>DescribeSampleTagListResponse</p> */ public class DescribeSampleTagListResponse 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 DescribeSampleTagListResponseBody body; private DescribeSampleTagListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSampleTagListResponse 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 DescribeSampleTagListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSampleTagListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSampleTagListResponseBody body); @Override DescribeSampleTagListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSampleTagListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSampleTagListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSampleTagListResponse 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(DescribeSampleTagListResponseBody body) { this.body = body; return this; } @Override public DescribeSampleTagListResponse build() { return new DescribeSampleTagListResponse(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/DescribeSampleTagListResponseBody.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 DescribeSampleTagListResponseBody} extends {@link TeaModel} * * <p>DescribeSampleTagListResponseBody</p> */ public class DescribeSampleTagListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeSampleTagListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSampleTagListResponseBody 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(DescribeSampleTagListResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DescribeSampleTagListResponseBody build() { return new DescribeSampleTagListResponseBody(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/DescribeSampleUploadPolicyRequest.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 DescribeSampleUploadPolicyRequest} extends {@link RequestModel} * * <p>DescribeSampleUploadPolicyRequest</p> */ public class DescribeSampleUploadPolicyRequest 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 DescribeSampleUploadPolicyRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeSampleUploadPolicyRequest 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<DescribeSampleUploadPolicyRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeSampleUploadPolicyRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; } /** * <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>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 DescribeSampleUploadPolicyRequest build() { return new DescribeSampleUploadPolicyRequest(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/DescribeSampleUploadPolicyResponse.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 DescribeSampleUploadPolicyResponse} extends {@link TeaModel} * * <p>DescribeSampleUploadPolicyResponse</p> */ public class DescribeSampleUploadPolicyResponse 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 DescribeSampleUploadPolicyResponseBody body; private DescribeSampleUploadPolicyResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSampleUploadPolicyResponse 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 DescribeSampleUploadPolicyResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSampleUploadPolicyResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSampleUploadPolicyResponseBody body); @Override DescribeSampleUploadPolicyResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSampleUploadPolicyResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSampleUploadPolicyResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSampleUploadPolicyResponse 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(DescribeSampleUploadPolicyResponseBody body) { this.body = body; return this; } @Override public DescribeSampleUploadPolicyResponse build() { return new DescribeSampleUploadPolicyResponse(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/DescribeSampleUploadPolicyResponseBody.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 DescribeSampleUploadPolicyResponseBody} extends {@link TeaModel} * * <p>DescribeSampleUploadPolicyResponseBody</p> */ public class DescribeSampleUploadPolicyResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("AccessId") private String accessId; @com.aliyun.core.annotation.NameInMap("Host") private String host; @com.aliyun.core.annotation.NameInMap("Key") private String key; @com.aliyun.core.annotation.NameInMap("Policy") private String policy; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Signature") private String signature; @com.aliyun.core.annotation.NameInMap("StsToken") private String stsToken; private DescribeSampleUploadPolicyResponseBody(Builder builder) { this.accessId = builder.accessId; this.host = builder.host; this.key = builder.key; this.policy = builder.policy; this.requestId = builder.requestId; this.signature = builder.signature; this.stsToken = builder.stsToken; } public static Builder builder() { return new Builder(); } public static DescribeSampleUploadPolicyResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return host */ public String getHost() { return this.host; } /** * @return key */ public String getKey() { return this.key; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return signature */ public String getSignature() { return this.signature; } /** * @return stsToken */ public String getStsToken() { return this.stsToken; } public static final class Builder { private String accessId; private String host; private String key; private String policy; private String requestId; private String signature; private String stsToken; private Builder() { } private Builder(DescribeSampleUploadPolicyResponseBody model) { this.accessId = model.accessId; this.host = model.host; this.key = model.key; this.policy = model.policy; this.requestId = model.requestId; this.signature = model.signature; this.stsToken = model.stsToken; } /** * <p>OSS access key ID.</p> * * <strong>example:</strong> * <p>LTAxxxxxxxxxxxx</p> */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * <p>OSS domain name.</p> * * <strong>example:</strong> * <p>emseu.cxy8uoq4aafx.eu-central-1.rds.amazonaws.com</p> */ public Builder host(String host) { this.host = host; return this; } /** * <p>The key of OSS upload policy.</p> * * <strong>example:</strong> * <p>saf/de/namelist/e924/ufzgsedX9bd3a7</p> */ public Builder key(String key) { this.key = key; return this; } /** * <p>OSS upload policy.</p> * * <strong>example:</strong> * <p>eyJleHBpcmF0aW9uIjoiMjAyNS0wNy0zMFQwNjowNTo0OS45NTRaIiwiY29uZGl0aW9ucyI6W1siY29udGVudC1sZW5ndGgtcmFuZ2UiLDAsMTA0ODU3NjAwMF0sWyJlcSIsIiRrZXkiLCJzYWZcL2RlXC9uYW1lbGlzdFwvZTkyNFwvdWZ6Z3NlZFg5Ymxxxxxxxxxxx</p> */ public Builder policy(String policy) { this.policy = policy; 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>Signature information.</p> * * <strong>example:</strong> * <p>3Es5j/9Xm/zwPcM9cwEr5pa0Wsc=</p> */ public Builder signature(String signature) { this.signature = signature; return this; } /** * <p>Temporary identity credential.</p> * * <strong>example:</strong> * <p>tT44bMQxxxxxxxxxxxxxxx</p> */ public Builder stsToken(String stsToken) { this.stsToken = stsToken; return this; } public DescribeSampleUploadPolicyResponseBody build() { return new DescribeSampleUploadPolicyResponseBody(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/DescribeSamplebatchPageRequest.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 DescribeSamplebatchPageRequest} extends {@link RequestModel} * * <p>DescribeSamplebatchPageRequest</p> */ public class DescribeSamplebatchPageRequest 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 Integer currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("dataValue") private String dataValue; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") private Integer pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeSamplebatchPageRequest(Builder builder) { super(builder); this.lang = builder.lang; this.currentPage = builder.currentPage; this.dataValue = builder.dataValue; this.pageSize = builder.pageSize; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeSamplebatchPageRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return dataValue */ public String getDataValue() { return this.dataValue; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeSamplebatchPageRequest, Builder> { private String lang; private Integer currentPage; private String dataValue; private Integer pageSize; private String regId; private Builder() { super(); } private Builder(DescribeSamplebatchPageRequest request) { super(request); this.lang = request.lang; this.currentPage = request.currentPage; this.dataValue = request.dataValue; this.pageSize = request.pageSize; 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>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>Content of the list entered in the text box</p> * * <strong>example:</strong> * <p>1770000000</p> */ public Builder dataValue(String dataValue) { this.putQueryParameter("dataValue", dataValue); this.dataValue = dataValue; 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>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 DescribeSamplebatchPageRequest build() { return new DescribeSamplebatchPageRequest(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/DescribeSamplebatchPageResponse.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 DescribeSamplebatchPageResponse} extends {@link TeaModel} * * <p>DescribeSamplebatchPageResponse</p> */ public class DescribeSamplebatchPageResponse 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 DescribeSamplebatchPageResponseBody body; private DescribeSamplebatchPageResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSamplebatchPageResponse 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 DescribeSamplebatchPageResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSamplebatchPageResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSamplebatchPageResponseBody body); @Override DescribeSamplebatchPageResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSamplebatchPageResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSamplebatchPageResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSamplebatchPageResponse 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(DescribeSamplebatchPageResponseBody body) { this.body = body; return this; } @Override public DescribeSamplebatchPageResponse build() { return new DescribeSamplebatchPageResponse(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/DescribeSamplebatchPageResponseBody.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 DescribeSamplebatchPageResponseBody} extends {@link TeaModel} * * <p>DescribeSamplebatchPageResponseBody</p> */ public class DescribeSamplebatchPageResponseBody 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 DescribeSamplebatchPageResponseBody(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 DescribeSamplebatchPageResponseBody 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(DescribeSamplebatchPageResponseBody 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>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>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>3</p> */ public Builder totalItem(Integer totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total number of pages</p> * * <strong>example:</strong> * <p>1</p> */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } public DescribeSamplebatchPageResponseBody build() { return new DescribeSamplebatchPageResponseBody(this); } } /** * * {@link DescribeSamplebatchPageResponseBody} extends {@link TeaModel} * * <p>DescribeSamplebatchPageResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("batchName") private String batchName; @com.aliyun.core.annotation.NameInMap("creator") private String creator; @com.aliyun.core.annotation.NameInMap("dataType") private String dataType; @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("initValidFileRow") private Long initValidFileRow; @com.aliyun.core.annotation.NameInMap("sampleBatchType") private String sampleBatchType; @com.aliyun.core.annotation.NameInMap("services") private String services; @com.aliyun.core.annotation.NameInMap("updator") private String updator; @com.aliyun.core.annotation.NameInMap("uuid") private String uuid; private ResultObject(Builder builder) { this.batchName = builder.batchName; this.creator = builder.creator; this.dataType = builder.dataType; this.description = builder.description; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.initValidFileRow = builder.initValidFileRow; this.sampleBatchType = builder.sampleBatchType; this.services = builder.services; this.updator = builder.updator; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return batchName */ public String getBatchName() { return this.batchName; } /** * @return creator */ public String getCreator() { return this.creator; } /** * @return dataType */ public String getDataType() { return this.dataType; } /** * @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 initValidFileRow */ public Long getInitValidFileRow() { return this.initValidFileRow; } /** * @return sampleBatchType */ public String getSampleBatchType() { return this.sampleBatchType; } /** * @return services */ public String getServices() { return this.services; } /** * @return updator */ public String getUpdator() { return this.updator; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private String batchName; private String creator; private String dataType; private String description; private Long gmtCreate; private Long gmtModified; private Long initValidFileRow; private String sampleBatchType; private String services; private String updator; private String uuid; private Builder() { } private Builder(ResultObject model) { this.batchName = model.batchName; this.creator = model.creator; this.dataType = model.dataType; this.description = model.description; this.gmtCreate = model.gmtCreate; this.gmtModified = model.gmtModified; this.initValidFileRow = model.initValidFileRow; this.sampleBatchType = model.sampleBatchType; this.services = model.services; this.updator = model.updator; this.uuid = model.uuid; } /** * <p>Sample batch name</p> * * <strong>example:</strong> * <p>白样本</p> */ public Builder batchName(String batchName) { this.batchName = batchName; return this; } /** * <p>Creator.</p> * * <strong>example:</strong> * <p>1519714049632764</p> */ public Builder creator(String creator) { this.creator = creator; return this; } /** * <p>Data type</p> * * <strong>example:</strong> * <p>mobile</p> */ public Builder dataType(String dataType) { this.dataType = dataType; return this; } /** * <p>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>Valid sample content data</p> * * <strong>example:</strong> * <p>2</p> */ public Builder initValidFileRow(Long initValidFileRow) { this.initValidFileRow = initValidFileRow; return this; } /** * <p>Specific type of the sample list</p> * * <strong>example:</strong> * <p>pass</p> */ public Builder sampleBatchType(String sampleBatchType) { this.sampleBatchType = sampleBatchType; return this; } /** * <p>Service ID</p> * * <strong>example:</strong> * <p>account_abuse</p> */ public Builder services(String services) { this.services = services; return this; } /** * <p>Modifier</p> * * <strong>example:</strong> * <p>1519714049632764</p> */ public Builder updator(String updator) { this.updator = updator; return this; } /** * <p>Sample batch UUID</p> * * <strong>example:</strong> * <p>203f1ae65c0a41a49dc4f8a47946caa2</p> */ public Builder uuid(String uuid) { this.uuid = uuid; 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/DescribeSceneAllEventNameCodeListRequest.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 DescribeSceneAllEventNameCodeListRequest} extends {@link RequestModel} * * <p>DescribeSceneAllEventNameCodeListRequest</p> */ public class DescribeSceneAllEventNameCodeListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("createType") private String createType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeSceneAllEventNameCodeListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.createType = builder.createType; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeSceneAllEventNameCodeListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return createType */ public String getCreateType() { return this.createType; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeSceneAllEventNameCodeListRequest, Builder> { private String lang; private String createType; private String regId; private Builder() { super(); } private Builder(DescribeSceneAllEventNameCodeListRequest request) { super(request); this.lang = request.lang; this.createType = request.createType; 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>Creation type</p> * * <strong>example:</strong> * <p>NORMAL</p> */ public Builder createType(String createType) { this.putQueryParameter("createType", createType); this.createType = createType; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeSceneAllEventNameCodeListRequest build() { return new DescribeSceneAllEventNameCodeListRequest(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/DescribeSceneAllEventNameCodeListResponse.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 DescribeSceneAllEventNameCodeListResponse} extends {@link TeaModel} * * <p>DescribeSceneAllEventNameCodeListResponse</p> */ public class DescribeSceneAllEventNameCodeListResponse 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 DescribeSceneAllEventNameCodeListResponseBody body; private DescribeSceneAllEventNameCodeListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSceneAllEventNameCodeListResponse 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 DescribeSceneAllEventNameCodeListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSceneAllEventNameCodeListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSceneAllEventNameCodeListResponseBody body); @Override DescribeSceneAllEventNameCodeListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSceneAllEventNameCodeListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSceneAllEventNameCodeListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSceneAllEventNameCodeListResponse 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(DescribeSceneAllEventNameCodeListResponseBody body) { this.body = body; return this; } @Override public DescribeSceneAllEventNameCodeListResponse build() { return new DescribeSceneAllEventNameCodeListResponse(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/DescribeSceneAllEventNameCodeListResponseBody.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 DescribeSceneAllEventNameCodeListResponseBody} extends {@link TeaModel} * * <p>DescribeSceneAllEventNameCodeListResponseBody</p> */ public class DescribeSceneAllEventNameCodeListResponseBody 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 DescribeSceneAllEventNameCodeListResponseBody(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 DescribeSceneAllEventNameCodeListResponseBody 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(DescribeSceneAllEventNameCodeListResponseBody 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 details</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, which is unique for each request, facilitating subsequent troubleshooting</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>Indicates whether the operation was successful, where true means success.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder success(Boolean success) { this.success = success; return this; } public DescribeSceneAllEventNameCodeListResponseBody build() { return new DescribeSceneAllEventNameCodeListResponseBody(this); } } /** * * {@link DescribeSceneAllEventNameCodeListResponseBody} extends {@link TeaModel} * * <p>DescribeSceneAllEventNameCodeListResponseBody</p> */ public static class Children extends TeaModel { @com.aliyun.core.annotation.NameInMap("createType") private String createType; @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.NameInMap("eventName") private String eventName; @com.aliyun.core.annotation.NameInMap("eventType") private String eventType; private Children(Builder builder) { this.createType = builder.createType; this.eventCode = builder.eventCode; this.eventName = builder.eventName; this.eventType = builder.eventType; } public static Builder builder() { return new Builder(); } public static Children create() { return builder().build(); } /** * @return createType */ public String getCreateType() { return this.createType; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return eventType */ public String getEventType() { return this.eventType; } public static final class Builder { private String createType; private String eventCode; private String eventName; private String eventType; private Builder() { } private Builder(Children model) { this.createType = model.createType; this.eventCode = model.eventCode; this.eventName = model.eventName; this.eventType = model.eventType; } /** * <p>Creation type</p> * * <strong>example:</strong> * <p>NORMAL</p> */ public Builder createType(String createType) { this.createType = createType; return this; } /** * <p>Event code</p> * * <strong>example:</strong> * <p>de_aamexg3015</p> */ public Builder eventCode(String eventCode) { this.eventCode = eventCode; return this; } /** * <p>Event name.</p> * * <strong>example:</strong> * <p>测试</p> */ public Builder eventName(String eventName) { this.eventName = eventName; return this; } /** * <p>Event type</p> * * <strong>example:</strong> * <p>BYPASS</p> */ public Builder eventType(String eventType) { this.eventType = eventType; return this; } public Children build() { return new Children(this); } } } /** * * {@link DescribeSceneAllEventNameCodeListResponseBody} extends {@link TeaModel} * * <p>DescribeSceneAllEventNameCodeListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("children") private java.util.List<Children> children; @com.aliyun.core.annotation.NameInMap("createType") private String createType; @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.NameInMap("eventName") private String eventName; @com.aliyun.core.annotation.NameInMap("eventType") private String eventType; private ResultObject(Builder builder) { this.children = builder.children; this.createType = builder.createType; this.eventCode = builder.eventCode; this.eventName = builder.eventName; this.eventType = builder.eventType; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return children */ public java.util.List<Children> getChildren() { return this.children; } /** * @return createType */ public String getCreateType() { return this.createType; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return eventType */ public String getEventType() { return this.eventType; } public static final class Builder { private java.util.List<Children> children; private String createType; private String eventCode; private String eventName; private String eventType; private Builder() { } private Builder(ResultObject model) { this.children = model.children; this.createType = model.createType; this.eventCode = model.eventCode; this.eventName = model.eventName; this.eventType = model.eventType; } /** * <p>Child objects</p> */ public Builder children(java.util.List<Children> children) { this.children = children; return this; } /** * <p>Creation type</p> * * <strong>example:</strong> * <p>MORMAL</p> */ public Builder createType(String createType) { this.createType = createType; return this; } /** * <p>Event code</p> * * <strong>example:</strong> * <p>de_aszbjb7236</p> */ public Builder eventCode(String eventCode) { this.eventCode = eventCode; return this; } /** * <p>Event name.</p> * * <strong>example:</strong> * <p>营销风险识别_增强版</p> */ public Builder eventName(String eventName) { this.eventName = eventName; return this; } /** * <p>Event type</p> * * <strong>example:</strong> * <p>MAIN</p> */ public Builder eventType(String eventType) { this.eventType = eventType; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeSceneEventPageListRequest.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 DescribeSceneEventPageListRequest} extends {@link RequestModel} * * <p>DescribeSceneEventPageListRequest</p> */ public class DescribeSceneEventPageListRequest 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("nameOrCode") private String nameOrCode; @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 DescribeSceneEventPageListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.currentPage = builder.currentPage; this.nameOrCode = builder.nameOrCode; this.pageSize = builder.pageSize; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeSceneEventPageListRequest 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 nameOrCode */ public String getNameOrCode() { return this.nameOrCode; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeSceneEventPageListRequest, Builder> { private String lang; private String currentPage; private String nameOrCode; private String pageSize; private String regId; private Builder() { super(); } private Builder(DescribeSceneEventPageListRequest request) { super(request); this.lang = request.lang; this.currentPage = request.currentPage; this.nameOrCode = request.nameOrCode; this.pageSize = request.pageSize; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Current page number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(String currentPage) { this.putQueryParameter("currentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Search name or service code</p> * * <strong>example:</strong> * <p>servicer_code</p> */ public Builder nameOrCode(String nameOrCode) { this.putQueryParameter("nameOrCode", nameOrCode); this.nameOrCode = nameOrCode; 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>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 DescribeSceneEventPageListRequest build() { return new DescribeSceneEventPageListRequest(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/DescribeSceneEventPageListResponse.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 DescribeSceneEventPageListResponse} extends {@link TeaModel} * * <p>DescribeSceneEventPageListResponse</p> */ public class DescribeSceneEventPageListResponse 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 DescribeSceneEventPageListResponseBody body; private DescribeSceneEventPageListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSceneEventPageListResponse 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 DescribeSceneEventPageListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSceneEventPageListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSceneEventPageListResponseBody body); @Override DescribeSceneEventPageListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSceneEventPageListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSceneEventPageListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSceneEventPageListResponse 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(DescribeSceneEventPageListResponseBody body) { this.body = body; return this; } @Override public DescribeSceneEventPageListResponse build() { return new DescribeSceneEventPageListResponse(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/DescribeSceneEventPageListResponseBody.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 DescribeSceneEventPageListResponseBody} extends {@link TeaModel} * * <p>DescribeSceneEventPageListResponseBody</p> */ public class DescribeSceneEventPageListResponseBody 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 DescribeSceneEventPageListResponseBody(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 DescribeSceneEventPageListResponseBody 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(DescribeSceneEventPageListResponseBody 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: 20, minimum value: 1, maximum value: 50.</p> * * <strong>example:</strong> * <p>20</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>Request ID, each request has a unique value, which facilitates subsequent troubleshooting</p> * * <strong>example:</strong> * <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return array</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } /** * <p>Total number of items</p> * * <strong>example:</strong> * <p>3</p> */ public Builder totalItem(Integer totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total number of pages</p> * * <strong>example:</strong> * <p>9</p> */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } public DescribeSceneEventPageListResponseBody build() { return new DescribeSceneEventPageListResponseBody(this); } } /** * * {@link DescribeSceneEventPageListResponseBody} extends {@link TeaModel} * * <p>DescribeSceneEventPageListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("commonRuleCount") private String commonRuleCount; @com.aliyun.core.annotation.NameInMap("customRuleCount") private String customRuleCount; @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.NameInMap("eventName") private String eventName; @com.aliyun.core.annotation.NameInMap("gmtModified") private String gmtModified; @com.aliyun.core.annotation.NameInMap("modifier") private String modifier; @com.aliyun.core.annotation.NameInMap("normalRuleCount") private String normalRuleCount; @com.aliyun.core.annotation.NameInMap("service") private String service; @com.aliyun.core.annotation.NameInMap("useStatus") private String useStatus; @com.aliyun.core.annotation.NameInMap("whiteBoxRuleCount") private String whiteBoxRuleCount; private ResultObject(Builder builder) { this.commonRuleCount = builder.commonRuleCount; this.customRuleCount = builder.customRuleCount; this.eventCode = builder.eventCode; this.eventName = builder.eventName; this.gmtModified = builder.gmtModified; this.modifier = builder.modifier; this.normalRuleCount = builder.normalRuleCount; this.service = builder.service; this.useStatus = builder.useStatus; this.whiteBoxRuleCount = builder.whiteBoxRuleCount; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return commonRuleCount */ public String getCommonRuleCount() { return this.commonRuleCount; } /** * @return customRuleCount */ public String getCustomRuleCount() { return this.customRuleCount; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return gmtModified */ public String getGmtModified() { return this.gmtModified; } /** * @return modifier */ public String getModifier() { return this.modifier; } /** * @return normalRuleCount */ public String getNormalRuleCount() { return this.normalRuleCount; } /** * @return service */ public String getService() { return this.service; } /** * @return useStatus */ public String getUseStatus() { return this.useStatus; } /** * @return whiteBoxRuleCount */ public String getWhiteBoxRuleCount() { return this.whiteBoxRuleCount; } public static final class Builder { private String commonRuleCount; private String customRuleCount; private String eventCode; private String eventName; private String gmtModified; private String modifier; private String normalRuleCount; private String service; private String useStatus; private String whiteBoxRuleCount; private Builder() { } private Builder(ResultObject model) { this.commonRuleCount = model.commonRuleCount; this.customRuleCount = model.customRuleCount; this.eventCode = model.eventCode; this.eventName = model.eventName; this.gmtModified = model.gmtModified; this.modifier = model.modifier; this.normalRuleCount = model.normalRuleCount; this.service = model.service; this.useStatus = model.useStatus; this.whiteBoxRuleCount = model.whiteBoxRuleCount; } /** * <p>Number of common rules</p> * * <strong>example:</strong> * <p>10</p> */ public Builder commonRuleCount(String commonRuleCount) { this.commonRuleCount = commonRuleCount; return this; } /** * <p>Number of custom rules</p> * * <strong>example:</strong> * <p>10</p> */ public Builder customRuleCount(String customRuleCount) { this.customRuleCount = customRuleCount; 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>Modification time</p> * * <strong>example:</strong> * <p>1565701886000</p> */ public Builder gmtModified(String gmtModified) { this.gmtModified = gmtModified; return this; } /** * <p>Modifier</p> * * <strong>example:</strong> * <p>公有云用户uid</p> */ public Builder modifier(String modifier) { this.modifier = modifier; return this; } /** * <p>Number of custom rules</p> * * <strong>example:</strong> * <p>10</p> */ public Builder normalRuleCount(String normalRuleCount) { this.normalRuleCount = normalRuleCount; return this; } /** * <p>Service code</p> * * <strong>example:</strong> * <p>device_risk</p> */ public Builder service(String service) { this.service = service; return this; } /** * <p>Usage status</p> * * <strong>example:</strong> * <p>使用/未使用</p> */ public Builder useStatus(String useStatus) { this.useStatus = useStatus; return this; } /** * <p>Number of white-box rules</p> * * <strong>example:</strong> * <p>10</p> */ public Builder whiteBoxRuleCount(String whiteBoxRuleCount) { this.whiteBoxRuleCount = whiteBoxRuleCount; 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/DescribeSceneRulePageListRequest.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 DescribeSceneRulePageListRequest} extends {@link RequestModel} * * <p>DescribeSceneRulePageListRequest</p> */ public class DescribeSceneRulePageListRequest 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("eventCode") private String eventCode; @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("ruleAuthType") private String ruleAuthType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ruleName") private String ruleName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ruleStatus") private String ruleStatus; private DescribeSceneRulePageListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.createType = builder.createType; this.currentPage = builder.currentPage; this.eventCode = builder.eventCode; this.pageSize = builder.pageSize; this.regId = builder.regId; this.ruleAuthType = builder.ruleAuthType; this.ruleName = builder.ruleName; this.ruleStatus = builder.ruleStatus; } public static Builder builder() { return new Builder(); } public static DescribeSceneRulePageListRequest 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 eventCode */ public String getEventCode() { return this.eventCode; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return ruleAuthType */ public String getRuleAuthType() { return this.ruleAuthType; } /** * @return ruleName */ public String getRuleName() { return this.ruleName; } /** * @return ruleStatus */ public String getRuleStatus() { return this.ruleStatus; } public static final class Builder extends Request.Builder<DescribeSceneRulePageListRequest, Builder> { private String lang; private String createType; private String currentPage; private String eventCode; private String pageSize; private String regId; private String ruleAuthType; private String ruleName; private String ruleStatus; private Builder() { super(); } private Builder(DescribeSceneRulePageListRequest request) { super(request); this.lang = request.lang; this.createType = request.createType; this.currentPage = request.currentPage; this.eventCode = request.eventCode; this.pageSize = request.pageSize; this.regId = request.regId; this.ruleAuthType = request.ruleAuthType; this.ruleName = request.ruleName; this.ruleStatus = request.ruleStatus; } /** * <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>Creation type</p> * * <strong>example:</strong> * <p>NOMAL</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>Event code</p> * * <strong>example:</strong> * <p>de_ahgctb7098</p> */ public Builder eventCode(String eventCode) { this.putQueryParameter("eventCode", eventCode); this.eventCode = eventCode; return this; } /** * <p>Number of items per page in the returned results. Default value: 20, minimum value: 1, maximum value: 50.</p> * * <strong>example:</strong> * <p>20</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>Strategy type</p> * * <strong>example:</strong> * <p>CUSTMER</p> */ public Builder ruleAuthType(String ruleAuthType) { this.putQueryParameter("ruleAuthType", ruleAuthType); this.ruleAuthType = ruleAuthType; return this; } /** * <p>Strategy name</p> * * <strong>example:</strong> * <p>营销风险识别</p> */ public Builder ruleName(String ruleName) { this.putQueryParameter("ruleName", ruleName); this.ruleName = ruleName; return this; } /** * <p>Strategy status</p> * * <strong>example:</strong> * <p>RUNNING</p> */ public Builder ruleStatus(String ruleStatus) { this.putQueryParameter("ruleStatus", ruleStatus); this.ruleStatus = ruleStatus; return this; } @Override public DescribeSceneRulePageListRequest build() { return new DescribeSceneRulePageListRequest(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/DescribeSceneRulePageListResponse.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 DescribeSceneRulePageListResponse} extends {@link TeaModel} * * <p>DescribeSceneRulePageListResponse</p> */ public class DescribeSceneRulePageListResponse 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 DescribeSceneRulePageListResponseBody body; private DescribeSceneRulePageListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSceneRulePageListResponse 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 DescribeSceneRulePageListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSceneRulePageListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSceneRulePageListResponseBody body); @Override DescribeSceneRulePageListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSceneRulePageListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSceneRulePageListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSceneRulePageListResponse 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(DescribeSceneRulePageListResponseBody body) { this.body = body; return this; } @Override public DescribeSceneRulePageListResponse build() { return new DescribeSceneRulePageListResponse(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/DescribeSceneRulePageListResponseBody.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 DescribeSceneRulePageListResponseBody} extends {@link TeaModel} * * <p>DescribeSceneRulePageListResponseBody</p> */ public class DescribeSceneRulePageListResponseBody 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 DescribeSceneRulePageListResponseBody(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 DescribeSceneRulePageListResponseBody 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(DescribeSceneRulePageListResponseBody 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 in the returned results. Default value: 20, minimum value: 1, maximum value: 50.</p> * * <strong>example:</strong> * <p>20</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>Request ID, which is unique for each request, facilitating subsequent troubleshooting</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>3</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 DescribeSceneRulePageListResponseBody build() { return new DescribeSceneRulePageListResponseBody(this); } } /** * * {@link DescribeSceneRulePageListResponseBody} extends {@link TeaModel} * * <p>DescribeSceneRulePageListResponseBody</p> */ public static class ConsoleAudit extends TeaModel { @com.aliyun.core.annotation.NameInMap("applyUserId") private String applyUserId; @com.aliyun.core.annotation.NameInMap("applyUserName") private String applyUserName; @com.aliyun.core.annotation.NameInMap("auditMsg") private String auditMsg; @com.aliyun.core.annotation.NameInMap("auditRealUserId") private String auditRealUserId; @com.aliyun.core.annotation.NameInMap("auditRealUserName") private String auditRealUserName; @com.aliyun.core.annotation.NameInMap("auditRemark") private String auditRemark; @com.aliyun.core.annotation.NameInMap("auditStatus") private String auditStatus; @com.aliyun.core.annotation.NameInMap("auditTime") private Long auditTime; @com.aliyun.core.annotation.NameInMap("auditUserId") private String auditUserId; @com.aliyun.core.annotation.NameInMap("auditUserName") private String auditUserName; @com.aliyun.core.annotation.NameInMap("gmtCreate") private Long gmtCreate; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("relationExt") private String relationExt; @com.aliyun.core.annotation.NameInMap("relationId") private Long relationId; @com.aliyun.core.annotation.NameInMap("relationName") private String relationName; @com.aliyun.core.annotation.NameInMap("relationType") private String relationType; private ConsoleAudit(Builder builder) { this.applyUserId = builder.applyUserId; this.applyUserName = builder.applyUserName; this.auditMsg = builder.auditMsg; this.auditRealUserId = builder.auditRealUserId; this.auditRealUserName = builder.auditRealUserName; this.auditRemark = builder.auditRemark; this.auditStatus = builder.auditStatus; this.auditTime = builder.auditTime; this.auditUserId = builder.auditUserId; this.auditUserName = builder.auditUserName; this.gmtCreate = builder.gmtCreate; this.id = builder.id; this.relationExt = builder.relationExt; this.relationId = builder.relationId; this.relationName = builder.relationName; this.relationType = builder.relationType; } public static Builder builder() { return new Builder(); } public static ConsoleAudit create() { return builder().build(); } /** * @return applyUserId */ public String getApplyUserId() { return this.applyUserId; } /** * @return applyUserName */ public String getApplyUserName() { return this.applyUserName; } /** * @return auditMsg */ public String getAuditMsg() { return this.auditMsg; } /** * @return auditRealUserId */ public String getAuditRealUserId() { return this.auditRealUserId; } /** * @return auditRealUserName */ public String getAuditRealUserName() { return this.auditRealUserName; } /** * @return auditRemark */ public String getAuditRemark() { return this.auditRemark; } /** * @return auditStatus */ public String getAuditStatus() { return this.auditStatus; } /** * @return auditTime */ public Long getAuditTime() { return this.auditTime; } /** * @return auditUserId */ public String getAuditUserId() { return this.auditUserId; } /** * @return auditUserName */ public String getAuditUserName() { return this.auditUserName; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return id */ public Long getId() { return this.id; } /** * @return relationExt */ public String getRelationExt() { return this.relationExt; } /** * @return relationId */ public Long getRelationId() { return this.relationId; } /** * @return relationName */ public String getRelationName() { return this.relationName; } /** * @return relationType */ public String getRelationType() { return this.relationType; } public static final class Builder { private String applyUserId; private String applyUserName; private String auditMsg; private String auditRealUserId; private String auditRealUserName; private String auditRemark; private String auditStatus; private Long auditTime; private String auditUserId; private String auditUserName; private Long gmtCreate; private Long id; private String relationExt; private Long relationId; private String relationName; private String relationType; private Builder() { } private Builder(ConsoleAudit model) { this.applyUserId = model.applyUserId; this.applyUserName = model.applyUserName; this.auditMsg = model.auditMsg; this.auditRealUserId = model.auditRealUserId; this.auditRealUserName = model.auditRealUserName; this.auditRemark = model.auditRemark; this.auditStatus = model.auditStatus; this.auditTime = model.auditTime; this.auditUserId = model.auditUserId; this.auditUserName = model.auditUserName; this.gmtCreate = model.gmtCreate; this.id = model.id; this.relationExt = model.relationExt; this.relationId = model.relationId; this.relationName = model.relationName; this.relationType = model.relationType; } /** * <p>Initiator account ID</p> * * <strong>example:</strong> * <p>1234567890999</p> */ public Builder applyUserId(String applyUserId) { this.applyUserId = applyUserId; return this; } /** * <p>Initiator account name</p> * * <strong>example:</strong> * <p>张三</p> */ public Builder applyUserName(String applyUserName) { this.applyUserName = applyUserName; return this; } /** * <p>Approval comments</p> * * <strong>example:</strong> * <p>同意</p> */ public Builder auditMsg(String auditMsg) { this.auditMsg = auditMsg; return this; } /** * <p>Final approver ID</p> * * <strong>example:</strong> * <p>1234567890</p> */ public Builder auditRealUserId(String auditRealUserId) { this.auditRealUserId = auditRealUserId; return this; } /** * <p>Approver account name</p> * * <strong>example:</strong> * <p>王五</p> */ public Builder auditRealUserName(String auditRealUserName) { this.auditRealUserName = auditRealUserName; return this; } /** * <p>Approval application remarks</p> * * <strong>example:</strong> * <p>备注</p> */ public Builder auditRemark(String auditRemark) { this.auditRemark = auditRemark; return this; } /** * <p>Status</p> * * <strong>example:</strong> * <p>AGREE</p> */ public Builder auditStatus(String auditStatus) { this.auditStatus = auditStatus; return this; } /** * <p>Approval time</p> * * <strong>example:</strong> * <p>1545726028000</p> */ public Builder auditTime(Long auditTime) { this.auditTime = auditTime; return this; } /** * <p>Designated auditor account IDs (comma-separated for multiple)</p> * * <strong>example:</strong> * <p>123</p> */ public Builder auditUserId(String auditUserId) { this.auditUserId = auditUserId; return this; } /** * <p>Designated auditor account names (comma-separated for multiple)</p> * * <strong>example:</strong> * <p>李四</p> */ public Builder auditUserName(String auditUserName) { this.auditUserName = auditUserName; return this; } /** * <p>Creation time in UTC</p> * * <strong>example:</strong> * <p>1545726028000</p> */ public Builder gmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * <p>Primary key ID</p> * * <strong>example:</strong> * <p>1728</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Information about other related parties (in JSON format)</p> * * <strong>example:</strong> * <p>{}</p> */ public Builder relationExt(String relationExt) { this.relationExt = relationExt; return this; } /** * <p>审批关联的事务ID</p> * * <strong>example:</strong> * <p>123</p> */ public Builder relationId(Long relationId) { this.relationId = relationId; return this; } /** * <p>The name of the associated transaction (can be null)</p> * * <strong>example:</strong> * <p>t</p> */ public Builder relationName(String relationName) { this.relationName = relationName; return this; } /** * <p>审批的类型(如rule代表策略的审批)</p> * * <strong>example:</strong> * <p>RULE</p> */ public Builder relationType(String relationType) { this.relationType = relationType; return this; } public ConsoleAudit build() { return new ConsoleAudit(this); } } } /** * * {@link DescribeSceneRulePageListResponseBody} extends {@link TeaModel} * * <p>DescribeSceneRulePageListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("authType") private String authType; @com.aliyun.core.annotation.NameInMap("consoleAudit") private ConsoleAudit consoleAudit; @com.aliyun.core.annotation.NameInMap("eventCode") private String eventCode; @com.aliyun.core.annotation.NameInMap("eventName") private String eventName; @com.aliyun.core.annotation.NameInMap("eventType") private String eventType; @com.aliyun.core.annotation.NameInMap("externalRuleName") private String externalRuleName; @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("mainRuleId") private String mainRuleId; @com.aliyun.core.annotation.NameInMap("priority") private Long priority; @com.aliyun.core.annotation.NameInMap("ruleAuthType") private String ruleAuthType; @com.aliyun.core.annotation.NameInMap("ruleId") private String ruleId; @com.aliyun.core.annotation.NameInMap("ruleMemo") private String ruleMemo; @com.aliyun.core.annotation.NameInMap("ruleName") private String ruleName; @com.aliyun.core.annotation.NameInMap("ruleStatus") private String ruleStatus; @com.aliyun.core.annotation.NameInMap("ruleType") private String ruleType; @com.aliyun.core.annotation.NameInMap("ruleVersionId") private Long ruleVersionId; @com.aliyun.core.annotation.NameInMap("templateId") private Long templateId; @com.aliyun.core.annotation.NameInMap("version") private Integer version; private ResultObject(Builder builder) { this.authType = builder.authType; this.consoleAudit = builder.consoleAudit; this.eventCode = builder.eventCode; this.eventName = builder.eventName; this.eventType = builder.eventType; this.externalRuleName = builder.externalRuleName; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.id = builder.id; this.mainRuleId = builder.mainRuleId; this.priority = builder.priority; this.ruleAuthType = builder.ruleAuthType; this.ruleId = builder.ruleId; this.ruleMemo = builder.ruleMemo; this.ruleName = builder.ruleName; this.ruleStatus = builder.ruleStatus; this.ruleType = builder.ruleType; this.ruleVersionId = builder.ruleVersionId; this.templateId = builder.templateId; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return authType */ public String getAuthType() { return this.authType; } /** * @return consoleAudit */ public ConsoleAudit getConsoleAudit() { return this.consoleAudit; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return eventType */ public String getEventType() { return this.eventType; } /** * @return externalRuleName */ public String getExternalRuleName() { return this.externalRuleName; } /** * @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 mainRuleId */ public String getMainRuleId() { return this.mainRuleId; } /** * @return priority */ public Long getPriority() { return this.priority; } /** * @return ruleAuthType */ public String getRuleAuthType() { return this.ruleAuthType; } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } /** * @return ruleMemo */ public String getRuleMemo() { return this.ruleMemo; } /** * @return ruleName */ public String getRuleName() { return this.ruleName; } /** * @return ruleStatus */ public String getRuleStatus() { return this.ruleStatus; } /** * @return ruleType */ public String getRuleType() { return this.ruleType; } /** * @return ruleVersionId */ public Long getRuleVersionId() { return this.ruleVersionId; } /** * @return templateId */ public Long getTemplateId() { return this.templateId; } /** * @return version */ public Integer getVersion() { return this.version; } public static final class Builder { private String authType; private ConsoleAudit consoleAudit; private String eventCode; private String eventName; private String eventType; private String externalRuleName; private Long gmtCreate; private Long gmtModified; private Long id; private String mainRuleId; private Long priority; private String ruleAuthType; private String ruleId; private String ruleMemo; private String ruleName; private String ruleStatus; private String ruleType; private Long ruleVersionId; private Long templateId; private Integer version; private Builder() { } private Builder(ResultObject model) { this.authType = model.authType; this.consoleAudit = model.consoleAudit; this.eventCode = model.eventCode; this.eventName = model.eventName; this.eventType = model.eventType; this.externalRuleName = model.externalRuleName; this.gmtCreate = model.gmtCreate; this.gmtModified = model.gmtModified; this.id = model.id; this.mainRuleId = model.mainRuleId; this.priority = model.priority; this.ruleAuthType = model.ruleAuthType; this.ruleId = model.ruleId; this.ruleMemo = model.ruleMemo; this.ruleName = model.ruleName; this.ruleStatus = model.ruleStatus; this.ruleType = model.ruleType; this.ruleVersionId = model.ruleVersionId; this.templateId = model.templateId; this.version = model.version; } /** * <p>Service authorization type</p> * * <strong>example:</strong> * <p>admin</p> */ public Builder authType(String authType) { this.authType = authType; return this; } /** * <p>Audit object</p> */ public Builder consoleAudit(ConsoleAudit consoleAudit) { this.consoleAudit = consoleAudit; return this; } /** * <p>Event code</p> * * <strong>example:</strong> * <p>de_aszbjb7236</p> */ public Builder eventCode(String eventCode) { this.eventCode = eventCode; return this; } /** * <p>Event name.</p> * * <strong>example:</strong> * <p>注册风险</p> */ public Builder eventName(String eventName) { this.eventName = eventName; return this; } /** * <p>Event type</p> * * <strong>example:</strong> * <p>MAIN</p> */ public Builder eventType(String eventType) { this.eventType = eventType; return this; } /** * <p>External rule name</p> * * <strong>example:</strong> * <p>策略1</p> */ public Builder externalRuleName(String externalRuleName) { this.externalRuleName = externalRuleName; 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 rule</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Main rule ID</p> * * <strong>example:</strong> * <p>4399</p> */ public Builder mainRuleId(String mainRuleId) { this.mainRuleId = mainRuleId; return this; } /** * <p>Strategy priority, where a higher number indicates a higher priority.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder priority(Long priority) { this.priority = priority; return this; } /** * <p>Rule Auth type</p> * * <strong>example:</strong> * <p>CUSTMER</p> */ public Builder ruleAuthType(String ruleAuthType) { this.ruleAuthType = ruleAuthType; return this; } /** * <p>Strategy ID</p> * * <strong>example:</strong> * <p>4730</p> */ public Builder ruleId(String ruleId) { this.ruleId = ruleId; return this; } /** * <p>Strategy description</p> * * <strong>example:</strong> * <p>描述信息</p> */ public Builder ruleMemo(String ruleMemo) { this.ruleMemo = ruleMemo; return this; } /** * <p>Strategy name</p> * * <strong>example:</strong> * <p>营销风险识别</p> */ public Builder ruleName(String ruleName) { this.ruleName = ruleName; return this; } /** * <p>Strategy status</p> * * <strong>example:</strong> * <p>RUNNING</p> */ public Builder ruleStatus(String ruleStatus) { this.ruleStatus = ruleStatus; return this; } /** * <p>Rule type</p> * * <strong>example:</strong> * <p>DEFAULT</p> */ public Builder ruleType(String ruleType) { this.ruleType = ruleType; return this; } /** * <p>Primary key ID of the rule version</p> * * <strong>example:</strong> * <p>3823</p> */ public Builder ruleVersionId(Long ruleVersionId) { this.ruleVersionId = ruleVersionId; return this; } /** * <p>Template ID</p> * * <strong>example:</strong> * <p>6</p> */ public Builder templateId(Long templateId) { this.templateId = templateId; return this; } /** * <p>Version number</p> * * <strong>example:</strong> * <p>1.0</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/DescribeScoreListRequest.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 DescribeScoreListRequest} extends {@link RequestModel} * * <p>DescribeScoreListRequest</p> */ public class DescribeScoreListRequest 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; private DescribeScoreListRequest(Builder builder) { super(builder); this.id = builder.id; this.lang = builder.lang; } public static Builder builder() { return new Builder(); } public static DescribeScoreListRequest 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; } public static final class Builder extends Request.Builder<DescribeScoreListRequest, Builder> { private String id; private String lang; private Builder() { super(); } private Builder(DescribeScoreListRequest request) { super(request); this.id = request.id; this.lang = request.lang; } /** * <p>Primary key ID.</p> * * <strong>example:</strong> * <p>300126</p> */ public Builder id(String id) { this.putQueryParameter("Id", id); this.id = id; return this; } /** * <p>Language type of the returned message. Values:</p> * <ul> * <li><strong>zh</strong> (default): 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; } @Override public DescribeScoreListRequest build() { return new DescribeScoreListRequest(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/DescribeScoreListResponse.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 DescribeScoreListResponse} extends {@link TeaModel} * * <p>DescribeScoreListResponse</p> */ public class DescribeScoreListResponse 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 DescribeScoreListResponseBody body; private DescribeScoreListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeScoreListResponse 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 DescribeScoreListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeScoreListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeScoreListResponseBody body); @Override DescribeScoreListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeScoreListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeScoreListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeScoreListResponse 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(DescribeScoreListResponseBody body) { this.body = body; return this; } @Override public DescribeScoreListResponse build() { return new DescribeScoreListResponse(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/DescribeScoreListResponseBody.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 DescribeScoreListResponseBody} extends {@link TeaModel} * * <p>DescribeScoreListResponseBody</p> */ public class DescribeScoreListResponseBody 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 DescribeScoreListResponseBody(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 DescribeScoreListResponseBody 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(DescribeScoreListResponseBody 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 DescribeScoreListResponseBody build() { return new DescribeScoreListResponseBody(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/DescribeScoreSectionNumLineChartRequest.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 DescribeScoreSectionNumLineChartRequest} extends {@link RequestModel} * * <p>DescribeScoreSectionNumLineChartRequest</p> */ public class DescribeScoreSectionNumLineChartRequest 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 DescribeScoreSectionNumLineChartRequest(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 DescribeScoreSectionNumLineChartRequest 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<DescribeScoreSectionNumLineChartRequest, 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(DescribeScoreSectionNumLineChartRequest 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 timestamp, in milliseconds.</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 timestamp, in milliseconds.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1751249559000</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_avcqzc3714</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>Diversion 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 DescribeScoreSectionNumLineChartRequest build() { return new DescribeScoreSectionNumLineChartRequest(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/DescribeScoreSectionNumLineChartResponse.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 DescribeScoreSectionNumLineChartResponse} extends {@link TeaModel} * * <p>DescribeScoreSectionNumLineChartResponse</p> */ public class DescribeScoreSectionNumLineChartResponse 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 DescribeScoreSectionNumLineChartResponseBody body; private DescribeScoreSectionNumLineChartResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeScoreSectionNumLineChartResponse 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 DescribeScoreSectionNumLineChartResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeScoreSectionNumLineChartResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeScoreSectionNumLineChartResponseBody body); @Override DescribeScoreSectionNumLineChartResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeScoreSectionNumLineChartResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeScoreSectionNumLineChartResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeScoreSectionNumLineChartResponse 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(DescribeScoreSectionNumLineChartResponseBody body) { this.body = body; return this; } @Override public DescribeScoreSectionNumLineChartResponse build() { return new DescribeScoreSectionNumLineChartResponse(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/DescribeScoreSectionNumLineChartResponseBody.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 DescribeScoreSectionNumLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeScoreSectionNumLineChartResponseBody</p> */ public class DescribeScoreSectionNumLineChartResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeScoreSectionNumLineChartResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeScoreSectionNumLineChartResponseBody 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(DescribeScoreSectionNumLineChartResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } public DescribeScoreSectionNumLineChartResponseBody build() { return new DescribeScoreSectionNumLineChartResponseBody(this); } } /** * * {@link DescribeScoreSectionNumLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeScoreSectionNumLineChartResponseBody</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>List of current category results.</p> */ public Builder data(java.util.List<String> data) { this.data = data; return this; } /** * <p>Category name.</p> * * <strong>example:</strong> * <p>旁路事件</p> */ public Builder name(String name) { this.name = name; return this; } public Series build() { return new Series(this); } } } /** * * {@link DescribeScoreSectionNumLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeScoreSectionNumLineChartResponseBody</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>Data structure.</p> */ public Builder data(java.util.List<String> data) { this.data = data; return this; } public Xaxis build() { return new Xaxis(this); } } } /** * * {@link DescribeScoreSectionNumLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeScoreSectionNumLineChartResponseBody</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>Details of 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/DescribeScoreSectionPieChartRequest.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 DescribeScoreSectionPieChartRequest} extends {@link RequestModel} * * <p>DescribeScoreSectionPieChartRequest</p> */ public class DescribeScoreSectionPieChartRequest 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("eventType") private String eventType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeScoreSectionPieChartRequest(Builder builder) { super(builder); this.lang = builder.lang; this.beginTime = builder.beginTime; this.endTime = builder.endTime; this.eventCodes = builder.eventCodes; this.eventType = builder.eventType; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeScoreSectionPieChartRequest 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 eventType */ public String getEventType() { return this.eventType; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeScoreSectionPieChartRequest, Builder> { private String lang; private Long beginTime; private Long endTime; private String eventCodes; private String eventType; private String regId; private Builder() { super(); } private Builder(DescribeScoreSectionPieChartRequest request) { super(request); this.lang = request.lang; this.beginTime = request.beginTime; this.endTime = request.endTime; this.eventCodes = request.eventCodes; this.eventType = request.eventType; 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>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>1740535600000</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>Event type.</p> * * <strong>example:</strong> * <p>MAIN</p> */ public Builder eventType(String eventType) { this.putQueryParameter("eventType", eventType); this.eventType = eventType; 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 DescribeScoreSectionPieChartRequest build() { return new DescribeScoreSectionPieChartRequest(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/DescribeScoreSectionPieChartResponse.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 DescribeScoreSectionPieChartResponse} extends {@link TeaModel} * * <p>DescribeScoreSectionPieChartResponse</p> */ public class DescribeScoreSectionPieChartResponse 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 DescribeScoreSectionPieChartResponseBody body; private DescribeScoreSectionPieChartResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeScoreSectionPieChartResponse 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 DescribeScoreSectionPieChartResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeScoreSectionPieChartResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeScoreSectionPieChartResponseBody body); @Override DescribeScoreSectionPieChartResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeScoreSectionPieChartResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeScoreSectionPieChartResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeScoreSectionPieChartResponse 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(DescribeScoreSectionPieChartResponseBody body) { this.body = body; return this; } @Override public DescribeScoreSectionPieChartResponse build() { return new DescribeScoreSectionPieChartResponse(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/DescribeScoreSectionPieChartResponseBody.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 DescribeScoreSectionPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeScoreSectionPieChartResponseBody</p> */ public class DescribeScoreSectionPieChartResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeScoreSectionPieChartResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeScoreSectionPieChartResponseBody 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(DescribeScoreSectionPieChartResponseBody 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 DescribeScoreSectionPieChartResponseBody build() { return new DescribeScoreSectionPieChartResponseBody(this); } } /** * * {@link DescribeScoreSectionPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeScoreSectionPieChartResponseBody</p> */ public static class Grid extends TeaModel { @com.aliyun.core.annotation.NameInMap("show") private Boolean show; private Grid(Builder builder) { this.show = builder.show; } public static Builder builder() { return new Builder(); } public static Grid create() { return builder().build(); } /** * @return show */ public Boolean getShow() { return this.show; } public static final class Builder { private Boolean show; private Builder() { } private Builder(Grid model) { this.show = model.show; } /** * <p>Chart field, default false</p> * * <strong>example:</strong> * <p>false</p> */ public Builder show(Boolean show) { this.show = show; return this; } public Grid build() { return new Grid(this); } } } /** * * {@link DescribeScoreSectionPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeScoreSectionPieChartResponseBody</p> */ public static class Data extends TeaModel { @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("value") private String value; private Data(Builder builder) { this.name = builder.name; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return name */ public String getName() { return this.name; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder { private String name; private String value; private Builder() { } private Builder(Data model) { this.name = model.name; this.value = model.value; } /** * <p>Category item name.</p> * * <strong>example:</strong> * <p>名称</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Result value.</p> * * <strong>example:</strong> * <p>100</p> */ public Builder value(String value) { this.value = value; return this; } public Data build() { return new Data(this); } } } /** * * {@link DescribeScoreSectionPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeScoreSectionPieChartResponseBody</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("roseType") private Boolean roseType; private Series(Builder builder) { this.data = builder.data; this.name = builder.name; this.roseType = builder.roseType; } 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 roseType */ public Boolean getRoseType() { return this.roseType; } public static final class Builder { private java.util.List<Data> data; private String name; private Boolean roseType; private Builder() { } private Builder(Series model) { this.data = model.data; this.name = model.name; this.roseType = model.roseType; } /** * <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>分值区间占比</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Chart field, default false</p> * * <strong>example:</strong> * <p>false</p> */ public Builder roseType(Boolean roseType) { this.roseType = roseType; return this; } public Series build() { return new Series(this); } } } /** * * {@link DescribeScoreSectionPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeScoreSectionPieChartResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("animation") private Boolean animation; @com.aliyun.core.annotation.NameInMap("grid") private Grid grid; @com.aliyun.core.annotation.NameInMap("series") private java.util.List<Series> series; private ResultObject(Builder builder) { this.animation = builder.animation; this.grid = builder.grid; this.series = builder.series; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return animation */ public Boolean getAnimation() { return this.animation; } /** * @return grid */ public Grid getGrid() { return this.grid; } /** * @return series */ public java.util.List<Series> getSeries() { return this.series; } public static final class Builder { private Boolean animation; private Grid grid; private java.util.List<Series> series; private Builder() { } private Builder(ResultObject model) { this.animation = model.animation; this.grid = model.grid; this.series = model.series; } /** * <p>Chart field, default true</p> * * <strong>example:</strong> * <p>true</p> */ public Builder animation(Boolean animation) { this.animation = animation; return this; } /** * <p>Belongs to grid.</p> */ public Builder grid(Grid grid) { this.grid = grid; return this; } /** * <p>Data list</p> */ public Builder series(java.util.List<Series> series) { this.series = series; 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/DescribeScoreSectionRatioLineChartRequest.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 DescribeScoreSectionRatioLineChartRequest} extends {@link RequestModel} * * <p>DescribeScoreSectionRatioLineChartRequest</p> */ public class DescribeScoreSectionRatioLineChartRequest 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 DescribeScoreSectionRatioLineChartRequest(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 DescribeScoreSectionRatioLineChartRequest 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<DescribeScoreSectionRatioLineChartRequest, 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(DescribeScoreSectionRatioLineChartRequest 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 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>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>1748491200000</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_avcqzc3714</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 DescribeScoreSectionRatioLineChartRequest build() { return new DescribeScoreSectionRatioLineChartRequest(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/DescribeScoreSectionRatioLineChartResponse.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 DescribeScoreSectionRatioLineChartResponse} extends {@link TeaModel} * * <p>DescribeScoreSectionRatioLineChartResponse</p> */ public class DescribeScoreSectionRatioLineChartResponse 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 DescribeScoreSectionRatioLineChartResponseBody body; private DescribeScoreSectionRatioLineChartResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeScoreSectionRatioLineChartResponse 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 DescribeScoreSectionRatioLineChartResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeScoreSectionRatioLineChartResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeScoreSectionRatioLineChartResponseBody body); @Override DescribeScoreSectionRatioLineChartResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeScoreSectionRatioLineChartResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeScoreSectionRatioLineChartResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeScoreSectionRatioLineChartResponse 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(DescribeScoreSectionRatioLineChartResponseBody body) { this.body = body; return this; } @Override public DescribeScoreSectionRatioLineChartResponse build() { return new DescribeScoreSectionRatioLineChartResponse(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/DescribeScoreSectionRatioLineChartResponseBody.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 DescribeScoreSectionRatioLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeScoreSectionRatioLineChartResponseBody</p> */ public class DescribeScoreSectionRatioLineChartResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeScoreSectionRatioLineChartResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeScoreSectionRatioLineChartResponseBody 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(DescribeScoreSectionRatioLineChartResponseBody 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 DescribeScoreSectionRatioLineChartResponseBody build() { return new DescribeScoreSectionRatioLineChartResponseBody(this); } } /** * * {@link DescribeScoreSectionRatioLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeScoreSectionRatioLineChartResponseBody</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>Statistical dimension.</p> * * <strong>example:</strong> * <p>旁路事件</p> */ public Builder name(String name) { this.name = name; return this; } public Series build() { return new Series(this); } } } /** * * {@link DescribeScoreSectionRatioLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeScoreSectionRatioLineChartResponseBody</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 DescribeScoreSectionRatioLineChartResponseBody} extends {@link TeaModel} * * <p>DescribeScoreSectionRatioLineChartResponseBody</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>Details of the 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/DescribeSelectItemRequest.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 DescribeSelectItemRequest} extends {@link RequestModel} * * <p>DescribeSelectItemRequest</p> */ public class DescribeSelectItemRequest 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 DescribeSelectItemRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeSelectItemRequest 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<DescribeSelectItemRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeSelectItemRequest 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 DescribeSelectItemRequest build() { return new DescribeSelectItemRequest(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/DescribeSelectItemResponse.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 DescribeSelectItemResponse} extends {@link TeaModel} * * <p>DescribeSelectItemResponse</p> */ public class DescribeSelectItemResponse 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 DescribeSelectItemResponseBody body; private DescribeSelectItemResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeSelectItemResponse 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 DescribeSelectItemResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeSelectItemResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeSelectItemResponseBody body); @Override DescribeSelectItemResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeSelectItemResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeSelectItemResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeSelectItemResponse 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(DescribeSelectItemResponseBody body) { this.body = body; return this; } @Override public DescribeSelectItemResponse build() { return new DescribeSelectItemResponse(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/DescribeSelectItemResponseBody.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 DescribeSelectItemResponseBody} extends {@link TeaModel} * * <p>DescribeSelectItemResponseBody</p> */ public class DescribeSelectItemResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeSelectItemResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeSelectItemResponseBody 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(DescribeSelectItemResponseBody 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 DescribeSelectItemResponseBody build() { return new DescribeSelectItemResponseBody(this); } } /** * * {@link DescribeSelectItemResponseBody} extends {@link TeaModel} * * <p>DescribeSelectItemResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("monitorStatusList") private java.util.List<String> monitorStatusList; @com.aliyun.core.annotation.NameInMap("taskIdList") private java.util.List<String> taskIdList; private ResultObject(Builder builder) { this.monitorStatusList = builder.monitorStatusList; this.taskIdList = builder.taskIdList; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return monitorStatusList */ public java.util.List<String> getMonitorStatusList() { return this.monitorStatusList; } /** * @return taskIdList */ public java.util.List<String> getTaskIdList() { return this.taskIdList; } public static final class Builder { private java.util.List<String> monitorStatusList; private java.util.List<String> taskIdList; private Builder() { } private Builder(ResultObject model) { this.monitorStatusList = model.monitorStatusList; this.taskIdList = model.taskIdList; } /** * <p>Monitoring status list.</p> */ public Builder monitorStatusList(java.util.List<String> monitorStatusList) { this.monitorStatusList = monitorStatusList; return this; } /** * <p>Task ID list.</p> */ public Builder taskIdList(java.util.List<String> taskIdList) { this.taskIdList = taskIdList; 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/DescribeServiceAppKeyRequest.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 DescribeServiceAppKeyRequest} extends {@link RequestModel} * * <p>DescribeServiceAppKeyRequest</p> */ public class DescribeServiceAppKeyRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeServiceAppKeyRequest(Builder builder) { super(builder); this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeServiceAppKeyRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeServiceAppKeyRequest, Builder> { private String regId; private Builder() { super(); } private Builder(DescribeServiceAppKeyRequest request) { super(request); this.regId = request.regId; } /** * <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 DescribeServiceAppKeyRequest build() { return new DescribeServiceAppKeyRequest(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/DescribeServiceAppKeyResponse.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 DescribeServiceAppKeyResponse} extends {@link TeaModel} * * <p>DescribeServiceAppKeyResponse</p> */ public class DescribeServiceAppKeyResponse 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 DescribeServiceAppKeyResponseBody body; private DescribeServiceAppKeyResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeServiceAppKeyResponse 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 DescribeServiceAppKeyResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeServiceAppKeyResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeServiceAppKeyResponseBody body); @Override DescribeServiceAppKeyResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeServiceAppKeyResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeServiceAppKeyResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeServiceAppKeyResponse 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(DescribeServiceAppKeyResponseBody body) { this.body = body; return this; } @Override public DescribeServiceAppKeyResponse build() { return new DescribeServiceAppKeyResponse(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/DescribeServiceAppKeyResponseBody.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 DescribeServiceAppKeyResponseBody} extends {@link TeaModel} * * <p>DescribeServiceAppKeyResponseBody</p> */ public class DescribeServiceAppKeyResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("code") private String code; @com.aliyun.core.annotation.NameInMap("httpStatusCode") private String httpStatusCode; @com.aliyun.core.annotation.NameInMap("message") private String message; @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; @com.aliyun.core.annotation.NameInMap("uccess") private Boolean uccess; private DescribeServiceAppKeyResponseBody(Builder builder) { this.code = builder.code; this.httpStatusCode = builder.httpStatusCode; this.message = builder.message; this.requestId = builder.requestId; this.resultObject = builder.resultObject; this.uccess = builder.uccess; } public static Builder builder() { return new Builder(); } public static DescribeServiceAppKeyResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return code */ public String getCode() { return this.code; } /** * @return httpStatusCode */ public String getHttpStatusCode() { return this.httpStatusCode; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } /** * @return uccess */ public Boolean getUccess() { return this.uccess; } public static final class Builder { private String code; private String httpStatusCode; private String message; private String requestId; private Boolean resultObject; private Boolean uccess; private Builder() { } private Builder(DescribeServiceAppKeyResponseBody model) { this.code = model.code; this.httpStatusCode = model.httpStatusCode; this.message = model.message; this.requestId = model.requestId; this.resultObject = model.resultObject; this.uccess = model.uccess; } /** * <p>Status code.</p> * * <strong>example:</strong> * <p>200</p> */ public Builder code(String code) { this.code = code; return this; } /** * <p>HTTP status code</p> * * <strong>example:</strong> * <p>200</p> */ public Builder httpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } /** * <p>Error message.</p> * * <strong>example:</strong> * <p>The input parameter data is not valid. order_storage_company_num component not found</p> */ public Builder message(String message) { this.message = message; return this; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } /** * <p>Whether the request was successful.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder uccess(Boolean uccess) { this.uccess = uccess; return this; } public DescribeServiceAppKeyResponseBody build() { return new DescribeServiceAppKeyResponseBody(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/DescribeServiceCodeNameRequest.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 DescribeServiceCodeNameRequest} extends {@link RequestModel} * * <p>DescribeServiceCodeNameRequest</p> */ public class DescribeServiceCodeNameRequest 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("Tab") private String tab; private DescribeServiceCodeNameRequest(Builder builder) { super(builder); this.lang = builder.lang; this.tab = builder.tab; } public static Builder builder() { return new Builder(); } public static DescribeServiceCodeNameRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return tab */ public String getTab() { return this.tab; } public static final class Builder extends Request.Builder<DescribeServiceCodeNameRequest, Builder> { private String lang; private String tab; private Builder() { super(); } private Builder(DescribeServiceCodeNameRequest request) { super(request); this.lang = request.lang; this.tab = request.tab; } /** * <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>FNAENIC</p> */ public Builder tab(String tab) { this.putQueryParameter("Tab", tab); this.tab = tab; return this; } @Override public DescribeServiceCodeNameRequest build() { return new DescribeServiceCodeNameRequest(this); } } }