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/DescribeAuditDetailsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuditDetailsRequest} extends {@link RequestModel}
*
* <p>DescribeAuditDetailsRequest</p>
*/
public class DescribeAuditDetailsRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("id")
@com.aliyun.core.annotation.Validation(required = true)
private Long id;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeAuditDetailsRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.id = builder.id;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAuditDetailsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeAuditDetailsRequest, Builder> {
private String lang;
private Long id;
private String regId;
private Builder() {
super();
}
private Builder(DescribeAuditDetailsRequest request) {
super(request);
this.lang = request.lang;
this.id = request.id;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Primary key ID</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>2557</p>
*/
public Builder id(Long id) {
this.putQueryParameter("id", id);
this.id = id;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeAuditDetailsRequest build() {
return new DescribeAuditDetailsRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuditDetailsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuditDetailsResponse} extends {@link TeaModel}
*
* <p>DescribeAuditDetailsResponse</p>
*/
public class DescribeAuditDetailsResponse 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 DescribeAuditDetailsResponseBody body;
private DescribeAuditDetailsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeAuditDetailsResponse 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 DescribeAuditDetailsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeAuditDetailsResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeAuditDetailsResponseBody body);
@Override
DescribeAuditDetailsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeAuditDetailsResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeAuditDetailsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeAuditDetailsResponse 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(DescribeAuditDetailsResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeAuditDetailsResponse build() {
return new DescribeAuditDetailsResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuditDetailsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuditDetailsResponseBody} extends {@link TeaModel}
*
* <p>DescribeAuditDetailsResponseBody</p>
*/
public class DescribeAuditDetailsResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("httpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private DescribeAuditDetailsResponseBody(Builder builder) {
this.code = builder.code;
this.httpStatusCode = builder.httpStatusCode;
this.message = builder.message;
this.resultObject = builder.resultObject;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAuditDetailsResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return resultObject
*/
public Boolean getResultObject() {
return this.resultObject;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String httpStatusCode;
private String message;
private Boolean resultObject;
private Boolean success;
private Builder() {
}
private Builder(DescribeAuditDetailsResponseBody model) {
this.code = model.code;
this.httpStatusCode = model.httpStatusCode;
this.message = model.message;
this.resultObject = model.resultObject;
this.success = model.success;
}
/**
* <p>Status code.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>HTTP status code</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpStatusCode(String httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
/**
* <p>Error message.</p>
*
* <strong>example:</strong>
* <p>The input parameter data is not valid. order_storage_company_num component not found</p>
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* <p>Returned object</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder resultObject(Boolean resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Whether the call was successful</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeAuditDetailsResponseBody build() {
return new DescribeAuditDetailsResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuditPageListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuditPageListRequest} extends {@link RequestModel}
*
* <p>DescribeAuditPageListRequest</p>
*/
public class DescribeAuditPageListRequest 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("auditStatus")
private String auditStatus;
@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("ruleName")
private String ruleName;
private DescribeAuditPageListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.auditStatus = builder.auditStatus;
this.currentPage = builder.currentPage;
this.eventCode = builder.eventCode;
this.pageSize = builder.pageSize;
this.regId = builder.regId;
this.ruleName = builder.ruleName;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAuditPageListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return auditStatus
*/
public String getAuditStatus() {
return this.auditStatus;
}
/**
* @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 ruleName
*/
public String getRuleName() {
return this.ruleName;
}
public static final class Builder extends Request.Builder<DescribeAuditPageListRequest, Builder> {
private String lang;
private String auditStatus;
private String currentPage;
private String eventCode;
private String pageSize;
private String regId;
private String ruleName;
private Builder() {
super();
}
private Builder(DescribeAuditPageListRequest request) {
super(request);
this.lang = request.lang;
this.auditStatus = request.auditStatus;
this.currentPage = request.currentPage;
this.eventCode = request.eventCode;
this.pageSize = request.pageSize;
this.regId = request.regId;
this.ruleName = request.ruleName;
}
/**
* <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>Audit status</p>
*
* <strong>example:</strong>
* <p>SUCCESS</p>
*/
public Builder auditStatus(String auditStatus) {
this.putQueryParameter("auditStatus", auditStatus);
this.auditStatus = auditStatus;
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_awukck7117</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 name</p>
*
* <strong>example:</strong>
* <p>手机号MD5命中人脸测试名单</p>
*/
public Builder ruleName(String ruleName) {
this.putQueryParameter("ruleName", ruleName);
this.ruleName = ruleName;
return this;
}
@Override
public DescribeAuditPageListRequest build() {
return new DescribeAuditPageListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuditPageListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuditPageListResponse} extends {@link TeaModel}
*
* <p>DescribeAuditPageListResponse</p>
*/
public class DescribeAuditPageListResponse 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 DescribeAuditPageListResponseBody body;
private DescribeAuditPageListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeAuditPageListResponse 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 DescribeAuditPageListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeAuditPageListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeAuditPageListResponseBody body);
@Override
DescribeAuditPageListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeAuditPageListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeAuditPageListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeAuditPageListResponse 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(DescribeAuditPageListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeAuditPageListResponse build() {
return new DescribeAuditPageListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuditPageListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuditPageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeAuditPageListResponseBody</p>
*/
public class DescribeAuditPageListResponseBody 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 Boolean resultObject;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Integer totalItem;
@com.aliyun.core.annotation.NameInMap("totalPage")
private Long totalPage;
private DescribeAuditPageListResponseBody(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 DescribeAuditPageListResponseBody 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 Boolean getResultObject() {
return this.resultObject;
}
/**
* @return totalItem
*/
public Integer getTotalItem() {
return this.totalItem;
}
/**
* @return totalPage
*/
public Long getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private Integer currentPage;
private Integer pageSize;
private String requestId;
private Boolean resultObject;
private Integer totalItem;
private Long totalPage;
private Builder() {
}
private Builder(DescribeAuditPageListResponseBody 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 records per page, default value: 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>Return object</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder resultObject(Boolean resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Total items</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>4</p>
*/
public Builder totalPage(Long totalPage) {
this.totalPage = totalPage;
return this;
}
public DescribeAuditPageListResponseBody build() {
return new DescribeAuditPageListResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuthEventNameListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthEventNameListRequest} extends {@link RequestModel}
*
* <p>DescribeAuthEventNameListRequest</p>
*/
public class DescribeAuthEventNameListRequest 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 DescribeAuthEventNameListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAuthEventNameListRequest 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<DescribeAuthEventNameListRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeAuthEventNameListRequest 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 DescribeAuthEventNameListRequest build() {
return new DescribeAuthEventNameListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuthEventNameListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthEventNameListResponse} extends {@link TeaModel}
*
* <p>DescribeAuthEventNameListResponse</p>
*/
public class DescribeAuthEventNameListResponse 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 DescribeAuthEventNameListResponseBody body;
private DescribeAuthEventNameListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeAuthEventNameListResponse 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 DescribeAuthEventNameListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeAuthEventNameListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeAuthEventNameListResponseBody body);
@Override
DescribeAuthEventNameListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeAuthEventNameListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeAuthEventNameListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeAuthEventNameListResponse 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(DescribeAuthEventNameListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeAuthEventNameListResponse build() {
return new DescribeAuthEventNameListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuthEventNameListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthEventNameListResponseBody} extends {@link TeaModel}
*
* <p>DescribeAuthEventNameListResponseBody</p>
*/
public class DescribeAuthEventNameListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
private DescribeAuthEventNameListResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAuthEventNameListResponseBody 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(DescribeAuthEventNameListResponseBody 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 DescribeAuthEventNameListResponseBody build() {
return new DescribeAuthEventNameListResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuthRulePageListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthRulePageListRequest} extends {@link RequestModel}
*
* <p>DescribeAuthRulePageListRequest</p>
*/
public class DescribeAuthRulePageListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventCode")
private String eventCode;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
@com.aliyun.core.annotation.Validation(required = true)
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("ruleName")
private String ruleName;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("status")
private String status;
private DescribeAuthRulePageListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.eventCode = builder.eventCode;
this.regId = builder.regId;
this.ruleName = builder.ruleName;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAuthRulePageListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return ruleName
*/
public String getRuleName() {
return this.ruleName;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
public static final class Builder extends Request.Builder<DescribeAuthRulePageListRequest, Builder> {
private String lang;
private String eventCode;
private String regId;
private String ruleName;
private String status;
private Builder() {
super();
}
private Builder(DescribeAuthRulePageListRequest request) {
super(request);
this.lang = request.lang;
this.eventCode = request.eventCode;
this.regId = request.regId;
this.ruleName = request.ruleName;
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>Event code</p>
*
* <strong>example:</strong>
* <p>de_arcehq4370</p>
*/
public Builder eventCode(String eventCode) {
this.putQueryParameter("eventCode", eventCode);
this.eventCode = eventCode;
return this;
}
/**
* <p>Region code</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Policy name</p>
*
* <strong>example:</strong>
* <p>分析中心事件测试_策略01</p>
*/
public Builder ruleName(String ruleName) {
this.putQueryParameter("ruleName", ruleName);
this.ruleName = ruleName;
return this;
}
/**
* <p>Status.</p>
*
* <strong>example:</strong>
* <p>RUNNING</p>
*/
public Builder status(String status) {
this.putQueryParameter("status", status);
this.status = status;
return this;
}
@Override
public DescribeAuthRulePageListRequest build() {
return new DescribeAuthRulePageListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuthRulePageListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthRulePageListResponse} extends {@link TeaModel}
*
* <p>DescribeAuthRulePageListResponse</p>
*/
public class DescribeAuthRulePageListResponse 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 DescribeAuthRulePageListResponseBody body;
private DescribeAuthRulePageListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeAuthRulePageListResponse 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 DescribeAuthRulePageListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeAuthRulePageListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeAuthRulePageListResponseBody body);
@Override
DescribeAuthRulePageListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeAuthRulePageListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeAuthRulePageListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeAuthRulePageListResponse 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(DescribeAuthRulePageListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeAuthRulePageListResponse build() {
return new DescribeAuthRulePageListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuthRulePageListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthRulePageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeAuthRulePageListResponseBody</p>
*/
public class DescribeAuthRulePageListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("currentPage")
private Long currentPage;
@com.aliyun.core.annotation.NameInMap("pageSize")
private Long pageSize;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Long totalItem;
@com.aliyun.core.annotation.NameInMap("totalPage")
private Long totalPage;
private DescribeAuthRulePageListResponseBody(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 DescribeAuthRulePageListResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return currentPage
*/
public Long getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
/**
* @return totalItem
*/
public Long getTotalItem() {
return this.totalItem;
}
/**
* @return totalPage
*/
public Long getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private String requestId;
private Long currentPage;
private Long pageSize;
private java.util.List<ResultObject> resultObject;
private Long totalItem;
private Long totalPage;
private Builder() {
}
private Builder(DescribeAuthRulePageListResponseBody 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(Long currentPage) {
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, default value is 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Long 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 items</p>
*
* <strong>example:</strong>
* <p>6</p>
*/
public Builder totalItem(Long totalItem) {
this.totalItem = totalItem;
return this;
}
/**
* <p>Total pages</p>
*
* <strong>example:</strong>
* <p>9</p>
*/
public Builder totalPage(Long totalPage) {
this.totalPage = totalPage;
return this;
}
public DescribeAuthRulePageListResponseBody build() {
return new DescribeAuthRulePageListResponseBody(this);
}
}
/**
*
* {@link DescribeAuthRulePageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeAuthRulePageListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("consoleRuleId")
private Long consoleRuleId;
@com.aliyun.core.annotation.NameInMap("createType")
private String createType;
@com.aliyun.core.annotation.NameInMap("gmtModified")
private Long gmtModified;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("memo")
private String memo;
@com.aliyun.core.annotation.NameInMap("ruleId")
private String ruleId;
@com.aliyun.core.annotation.NameInMap("ruleName")
private String ruleName;
@com.aliyun.core.annotation.NameInMap("ruleVersionId")
private Long ruleVersionId;
@com.aliyun.core.annotation.NameInMap("status")
private String status;
@com.aliyun.core.annotation.NameInMap("version")
private Long version;
private ResultObject(Builder builder) {
this.consoleRuleId = builder.consoleRuleId;
this.createType = builder.createType;
this.gmtModified = builder.gmtModified;
this.id = builder.id;
this.memo = builder.memo;
this.ruleId = builder.ruleId;
this.ruleName = builder.ruleName;
this.ruleVersionId = builder.ruleVersionId;
this.status = builder.status;
this.version = builder.version;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return consoleRuleId
*/
public Long getConsoleRuleId() {
return this.consoleRuleId;
}
/**
* @return createType
*/
public String getCreateType() {
return this.createType;
}
/**
* @return gmtModified
*/
public Long getGmtModified() {
return this.gmtModified;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return memo
*/
public String getMemo() {
return this.memo;
}
/**
* @return ruleId
*/
public String getRuleId() {
return this.ruleId;
}
/**
* @return ruleName
*/
public String getRuleName() {
return this.ruleName;
}
/**
* @return ruleVersionId
*/
public Long getRuleVersionId() {
return this.ruleVersionId;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return version
*/
public Long getVersion() {
return this.version;
}
public static final class Builder {
private Long consoleRuleId;
private String createType;
private Long gmtModified;
private Long id;
private String memo;
private String ruleId;
private String ruleName;
private Long ruleVersionId;
private String status;
private Long version;
private Builder() {
}
private Builder(ResultObject model) {
this.consoleRuleId = model.consoleRuleId;
this.createType = model.createType;
this.gmtModified = model.gmtModified;
this.id = model.id;
this.memo = model.memo;
this.ruleId = model.ruleId;
this.ruleName = model.ruleName;
this.ruleVersionId = model.ruleVersionId;
this.status = model.status;
this.version = model.version;
}
/**
* <p>Console rule ID.</p>
*
* <strong>example:</strong>
* <p>6715</p>
*/
public Builder consoleRuleId(Long consoleRuleId) {
this.consoleRuleId = consoleRuleId;
return this;
}
/**
* <p>Creation type</p>
*
* <strong>example:</strong>
* <p>MORMAL</p>
*/
public Builder createType(String createType) {
this.createType = createType;
return this;
}
/**
* <p>Modification time</p>
*
* <strong>example:</strong>
* <p>1565701886000</p>
*/
public Builder gmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* <p>Policy primary key ID</p>
*
* <strong>example:</strong>
* <p>497</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Memo</p>
*
* <strong>example:</strong>
* <p>分析中心事件测试_策略01</p>
*/
public Builder memo(String memo) {
this.memo = memo;
return this;
}
/**
* <p>Policy ID</p>
*
* <strong>example:</strong>
* <p>102059</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 version primary key ID</p>
*
* <strong>example:</strong>
* <p>3823</p>
*/
public Builder ruleVersionId(Long ruleVersionId) {
this.ruleVersionId = ruleVersionId;
return this;
}
/**
* <p>Status.</p>
*
* <strong>example:</strong>
* <p>RUNNING</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* <p>Version number</p>
*
* <strong>example:</strong>
* <p>8</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/DescribeAuthSceneListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthSceneListRequest} extends {@link RequestModel}
*
* <p>DescribeAuthSceneListRequest</p>
*/
public class DescribeAuthSceneListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
@com.aliyun.core.annotation.Validation(required = true)
private String regId;
private DescribeAuthSceneListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAuthSceneListRequest 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<DescribeAuthSceneListRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeAuthSceneListRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeAuthSceneListRequest build() {
return new DescribeAuthSceneListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuthSceneListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthSceneListResponse} extends {@link TeaModel}
*
* <p>DescribeAuthSceneListResponse</p>
*/
public class DescribeAuthSceneListResponse 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 DescribeAuthSceneListResponseBody body;
private DescribeAuthSceneListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeAuthSceneListResponse 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 DescribeAuthSceneListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeAuthSceneListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeAuthSceneListResponseBody body);
@Override
DescribeAuthSceneListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeAuthSceneListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeAuthSceneListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeAuthSceneListResponse 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(DescribeAuthSceneListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeAuthSceneListResponse build() {
return new DescribeAuthSceneListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuthSceneListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthSceneListResponseBody} extends {@link TeaModel}
*
* <p>DescribeAuthSceneListResponseBody</p>
*/
public class DescribeAuthSceneListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
private DescribeAuthSceneListResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAuthSceneListResponseBody 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(DescribeAuthSceneListResponseBody 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 DescribeAuthSceneListResponseBody build() {
return new DescribeAuthSceneListResponseBody(this);
}
}
/**
*
* {@link DescribeAuthSceneListResponseBody} extends {@link TeaModel}
*
* <p>DescribeAuthSceneListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("serviceCode")
private String serviceCode;
private ResultObject(Builder builder) {
this.serviceCode = builder.serviceCode;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return serviceCode
*/
public String getServiceCode() {
return this.serviceCode;
}
public static final class Builder {
private String serviceCode;
private Builder() {
}
private Builder(ResultObject model) {
this.serviceCode = model.serviceCode;
}
/**
* <p>Service code</p>
*
* <strong>example:</strong>
* <p>account_abuse</p>
*/
public Builder serviceCode(String serviceCode) {
this.serviceCode = serviceCode;
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/DescribeAuthScenePageListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthScenePageListRequest} extends {@link RequestModel}
*
* <p>DescribeAuthScenePageListRequest</p>
*/
public class DescribeAuthScenePageListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
@com.aliyun.core.annotation.Validation(required = true)
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("sceneName")
private String sceneName;
private DescribeAuthScenePageListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
this.sceneName = builder.sceneName;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAuthScenePageListRequest 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 sceneName
*/
public String getSceneName() {
return this.sceneName;
}
public static final class Builder extends Request.Builder<DescribeAuthScenePageListRequest, Builder> {
private String lang;
private String regId;
private String sceneName;
private Builder() {
super();
}
private Builder(DescribeAuthScenePageListRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
this.sceneName = request.sceneName;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Scene name.</p>
*
* <strong>example:</strong>
* <p>account_abuse</p>
*/
public Builder sceneName(String sceneName) {
this.putQueryParameter("sceneName", sceneName);
this.sceneName = sceneName;
return this;
}
@Override
public DescribeAuthScenePageListRequest build() {
return new DescribeAuthScenePageListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuthScenePageListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthScenePageListResponse} extends {@link TeaModel}
*
* <p>DescribeAuthScenePageListResponse</p>
*/
public class DescribeAuthScenePageListResponse 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 DescribeAuthScenePageListResponseBody body;
private DescribeAuthScenePageListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeAuthScenePageListResponse 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 DescribeAuthScenePageListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeAuthScenePageListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeAuthScenePageListResponseBody body);
@Override
DescribeAuthScenePageListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeAuthScenePageListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeAuthScenePageListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeAuthScenePageListResponse 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(DescribeAuthScenePageListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeAuthScenePageListResponse build() {
return new DescribeAuthScenePageListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuthScenePageListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthScenePageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeAuthScenePageListResponseBody</p>
*/
public class DescribeAuthScenePageListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("currentPage")
private Long currentPage;
@com.aliyun.core.annotation.NameInMap("pageSize")
private Long pageSize;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Long totalItem;
@com.aliyun.core.annotation.NameInMap("totalPage")
private Long totalPage;
private DescribeAuthScenePageListResponseBody(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 DescribeAuthScenePageListResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return currentPage
*/
public Long getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
/**
* @return totalItem
*/
public Long getTotalItem() {
return this.totalItem;
}
/**
* @return totalPage
*/
public Long getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private String requestId;
private Long currentPage;
private Long pageSize;
private java.util.List<ResultObject> resultObject;
private Long totalItem;
private Long totalPage;
private Builder() {
}
private Builder(DescribeAuthScenePageListResponseBody 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(Long currentPage) {
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, default value is 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Long 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(Long totalItem) {
this.totalItem = totalItem;
return this;
}
/**
* <p>Total number of pages.</p>
*
* <strong>example:</strong>
* <p>9</p>
*/
public Builder totalPage(Long totalPage) {
this.totalPage = totalPage;
return this;
}
public DescribeAuthScenePageListResponseBody build() {
return new DescribeAuthScenePageListResponseBody(this);
}
}
/**
*
* {@link DescribeAuthScenePageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeAuthScenePageListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("commonRuleCount")
private Long commonRuleCount;
@com.aliyun.core.annotation.NameInMap("customRuleCount")
private Long customRuleCount;
@com.aliyun.core.annotation.NameInMap("eventCode")
private String eventCode;
@com.aliyun.core.annotation.NameInMap("sceneName")
private String sceneName;
@com.aliyun.core.annotation.NameInMap("serverName")
private String serverName;
private ResultObject(Builder builder) {
this.commonRuleCount = builder.commonRuleCount;
this.customRuleCount = builder.customRuleCount;
this.eventCode = builder.eventCode;
this.sceneName = builder.sceneName;
this.serverName = builder.serverName;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return commonRuleCount
*/
public Long getCommonRuleCount() {
return this.commonRuleCount;
}
/**
* @return customRuleCount
*/
public Long getCustomRuleCount() {
return this.customRuleCount;
}
/**
* @return eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return sceneName
*/
public String getSceneName() {
return this.sceneName;
}
/**
* @return serverName
*/
public String getServerName() {
return this.serverName;
}
public static final class Builder {
private Long commonRuleCount;
private Long customRuleCount;
private String eventCode;
private String sceneName;
private String serverName;
private Builder() {
}
private Builder(ResultObject model) {
this.commonRuleCount = model.commonRuleCount;
this.customRuleCount = model.customRuleCount;
this.eventCode = model.eventCode;
this.sceneName = model.sceneName;
this.serverName = model.serverName;
}
/**
* <p>Number of common rules</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder commonRuleCount(Long commonRuleCount) {
this.commonRuleCount = commonRuleCount;
return this;
}
/**
* <p>Number of custom rules</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder customRuleCount(Long customRuleCount) {
this.customRuleCount = customRuleCount;
return this;
}
/**
* <p>Event code</p>
*
* <strong>example:</strong>
* <p>de_avypfd8253</p>
*/
public Builder eventCode(String eventCode) {
this.eventCode = eventCode;
return this;
}
/**
* <p>Scene name.</p>
*
* <strong>example:</strong>
* <p>注册风险识别服务</p>
*/
public Builder sceneName(String sceneName) {
this.sceneName = sceneName;
return this;
}
/**
* <p>Service name.</p>
*
* <strong>example:</strong>
* <p>account_abuse</p>
*/
public Builder serverName(String serverName) {
this.serverName = serverName;
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/DescribeAuthStatusRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthStatusRequest} extends {@link RequestModel}
*
* <p>DescribeAuthStatusRequest</p>
*/
public class DescribeAuthStatusRequest 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 DescribeAuthStatusRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAuthStatusRequest 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<DescribeAuthStatusRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeAuthStatusRequest 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 DescribeAuthStatusRequest build() {
return new DescribeAuthStatusRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuthStatusResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthStatusResponse} extends {@link TeaModel}
*
* <p>DescribeAuthStatusResponse</p>
*/
public class DescribeAuthStatusResponse 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 DescribeAuthStatusResponseBody body;
private DescribeAuthStatusResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeAuthStatusResponse 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 DescribeAuthStatusResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeAuthStatusResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeAuthStatusResponseBody body);
@Override
DescribeAuthStatusResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeAuthStatusResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeAuthStatusResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeAuthStatusResponse 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(DescribeAuthStatusResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeAuthStatusResponse build() {
return new DescribeAuthStatusResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAuthStatusResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAuthStatusResponseBody} extends {@link TeaModel}
*
* <p>DescribeAuthStatusResponseBody</p>
*/
public class DescribeAuthStatusResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
private DescribeAuthStatusResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAuthStatusResponseBody 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(DescribeAuthStatusResponseBody 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 DescribeAuthStatusResponseBody build() {
return new DescribeAuthStatusResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAvgExecuteCostReportRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAvgExecuteCostReportRequest} extends {@link RequestModel}
*
* <p>DescribeAvgExecuteCostReportRequest</p>
*/
public class DescribeAvgExecuteCostReportRequest 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 DescribeAvgExecuteCostReportRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAvgExecuteCostReportRequest 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<DescribeAvgExecuteCostReportRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeAvgExecuteCostReportRequest 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 DescribeAvgExecuteCostReportRequest build() {
return new DescribeAvgExecuteCostReportRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAvgExecuteCostReportResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAvgExecuteCostReportResponse} extends {@link TeaModel}
*
* <p>DescribeAvgExecuteCostReportResponse</p>
*/
public class DescribeAvgExecuteCostReportResponse 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 DescribeAvgExecuteCostReportResponseBody body;
private DescribeAvgExecuteCostReportResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeAvgExecuteCostReportResponse 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 DescribeAvgExecuteCostReportResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeAvgExecuteCostReportResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeAvgExecuteCostReportResponseBody body);
@Override
DescribeAvgExecuteCostReportResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeAvgExecuteCostReportResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeAvgExecuteCostReportResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeAvgExecuteCostReportResponse 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(DescribeAvgExecuteCostReportResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeAvgExecuteCostReportResponse build() {
return new DescribeAvgExecuteCostReportResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeAvgExecuteCostReportResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeAvgExecuteCostReportResponseBody} extends {@link TeaModel}
*
* <p>DescribeAvgExecuteCostReportResponseBody</p>
*/
public class DescribeAvgExecuteCostReportResponseBody 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 DescribeAvgExecuteCostReportResponseBody(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 DescribeAvgExecuteCostReportResponseBody 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(DescribeAvgExecuteCostReportResponseBody model) {
this.code = model.code;
this.httpStatusCode = model.httpStatusCode;
this.message = model.message;
this.requestId = model.requestId;
this.resultObject = model.resultObject;
this.success = model.success;
}
/**
* <p>Status code.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>HTTP status code</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpStatusCode(String httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
/**
* <p>Error message.</p>
*
* <strong>example:</strong>
* <p>The input parameter data is not valid. order_storage_company_num component not found</p>
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Whether the call was successful</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeAvgExecuteCostReportResponseBody build() {
return new DescribeAvgExecuteCostReportResponseBody(this);
}
}
/**
*
* {@link DescribeAvgExecuteCostReportResponseBody} extends {@link TeaModel}
*
* <p>DescribeAvgExecuteCostReportResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("ratio")
private String ratio;
@com.aliyun.core.annotation.NameInMap("value")
private String value;
private ResultObject(Builder builder) {
this.ratio = builder.ratio;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return ratio
*/
public String getRatio() {
return this.ratio;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
public static final class Builder {
private String ratio;
private String value;
private Builder() {
}
private Builder(ResultObject model) {
this.ratio = model.ratio;
this.value = model.value;
}
/**
* <p>Comparison with yesterday"s average execution time</p>
*
* <strong>example:</strong>
* <p>0.2</p>
*/
public Builder ratio(String ratio) {
this.ratio = ratio;
return this;
}
/**
* <p>Today"s average execution time</p>
*
* <strong>example:</strong>
* <p>0.1 毫秒</p>
*/
public Builder value(String value) {
this.value = value;
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/DescribeBasicSearchPageListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeBasicSearchPageListRequest} extends {@link RequestModel}
*
* <p>DescribeBasicSearchPageListRequest</p>
*/
public class DescribeBasicSearchPageListRequest 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")
@com.aliyun.core.annotation.Validation(required = true)
private Long currentPage;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventBeginTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long eventBeginTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventCodes")
@com.aliyun.core.annotation.Validation(required = true)
private String eventCodes;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventEndTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long eventEndTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("fieldName")
private String fieldName;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("fieldValue")
private String fieldValue;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("pageSize")
@com.aliyun.core.annotation.Validation(required = true)
private Long pageSize;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
@com.aliyun.core.annotation.Validation(required = true)
private String regId;
private DescribeBasicSearchPageListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.currentPage = builder.currentPage;
this.eventBeginTime = builder.eventBeginTime;
this.eventCodes = builder.eventCodes;
this.eventEndTime = builder.eventEndTime;
this.fieldName = builder.fieldName;
this.fieldValue = builder.fieldValue;
this.pageSize = builder.pageSize;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeBasicSearchPageListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return currentPage
*/
public Long getCurrentPage() {
return this.currentPage;
}
/**
* @return eventBeginTime
*/
public Long getEventBeginTime() {
return this.eventBeginTime;
}
/**
* @return eventCodes
*/
public String getEventCodes() {
return this.eventCodes;
}
/**
* @return eventEndTime
*/
public Long getEventEndTime() {
return this.eventEndTime;
}
/**
* @return fieldName
*/
public String getFieldName() {
return this.fieldName;
}
/**
* @return fieldValue
*/
public String getFieldValue() {
return this.fieldValue;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeBasicSearchPageListRequest, Builder> {
private String lang;
private Long currentPage;
private Long eventBeginTime;
private String eventCodes;
private Long eventEndTime;
private String fieldName;
private String fieldValue;
private Long pageSize;
private String regId;
private Builder() {
super();
}
private Builder(DescribeBasicSearchPageListRequest request) {
super(request);
this.lang = request.lang;
this.currentPage = request.currentPage;
this.eventBeginTime = request.eventBeginTime;
this.eventCodes = request.eventCodes;
this.eventEndTime = request.eventEndTime;
this.fieldName = request.fieldName;
this.fieldValue = request.fieldValue;
this.pageSize = request.pageSize;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, 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>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Long currentPage) {
this.putQueryParameter("currentPage", currentPage);
this.currentPage = currentPage;
return this;
}
/**
* <p>Query start time, accurate to milliseconds (ms).</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1753372800000</p>
*/
public Builder eventBeginTime(Long eventBeginTime) {
this.putQueryParameter("eventBeginTime", eventBeginTime);
this.eventBeginTime = eventBeginTime;
return this;
}
/**
* <p>Event code.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>["de_ahqhsw7665"]</p>
*/
public Builder eventCodes(String eventCodes) {
this.putQueryParameter("eventCodes", eventCodes);
this.eventCodes = eventCodes;
return this;
}
/**
* <p>End time, accurate to milliseconds (ms).</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1753459199059</p>
*/
public Builder eventEndTime(Long eventEndTime) {
this.putQueryParameter("eventEndTime", eventEndTime);
this.eventEndTime = eventEndTime;
return this;
}
/**
* <p>Field name</p>
*
* <strong>example:</strong>
* <p>age</p>
*/
public Builder fieldName(String fieldName) {
this.putQueryParameter("fieldName", fieldName);
this.fieldName = fieldName;
return this;
}
/**
* <p>Field value</p>
*
* <strong>example:</strong>
* <p>20</p>
*/
public Builder fieldValue(String fieldValue) {
this.putQueryParameter("fieldValue", fieldValue);
this.fieldValue = fieldValue;
return this;
}
/**
* <p>Page size, with a default value of 10</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Long pageSize) {
this.putQueryParameter("pageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>Region code</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeBasicSearchPageListRequest build() {
return new DescribeBasicSearchPageListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeBasicSearchPageListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeBasicSearchPageListResponse} extends {@link TeaModel}
*
* <p>DescribeBasicSearchPageListResponse</p>
*/
public class DescribeBasicSearchPageListResponse 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 DescribeBasicSearchPageListResponseBody body;
private DescribeBasicSearchPageListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeBasicSearchPageListResponse 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 DescribeBasicSearchPageListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeBasicSearchPageListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeBasicSearchPageListResponseBody body);
@Override
DescribeBasicSearchPageListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeBasicSearchPageListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeBasicSearchPageListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeBasicSearchPageListResponse 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(DescribeBasicSearchPageListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeBasicSearchPageListResponse build() {
return new DescribeBasicSearchPageListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeBasicSearchPageListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeBasicSearchPageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeBasicSearchPageListResponseBody</p>
*/
public class DescribeBasicSearchPageListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
private DescribeBasicSearchPageListResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeBasicSearchPageListResponseBody 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(DescribeBasicSearchPageListResponseBody 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 DescribeBasicSearchPageListResponseBody build() {
return new DescribeBasicSearchPageListResponseBody(this);
}
}
/**
*
* {@link DescribeBasicSearchPageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeBasicSearchPageListResponseBody</p>
*/
public static class ResultObjectHeader extends TeaModel {
@com.aliyun.core.annotation.NameInMap("fieldName")
private String fieldName;
@com.aliyun.core.annotation.NameInMap("fieldTitle")
private String fieldTitle;
@com.aliyun.core.annotation.NameInMap("isDefault")
private Boolean isDefault;
private ResultObjectHeader(Builder builder) {
this.fieldName = builder.fieldName;
this.fieldTitle = builder.fieldTitle;
this.isDefault = builder.isDefault;
}
public static Builder builder() {
return new Builder();
}
public static ResultObjectHeader create() {
return builder().build();
}
/**
* @return fieldName
*/
public String getFieldName() {
return this.fieldName;
}
/**
* @return fieldTitle
*/
public String getFieldTitle() {
return this.fieldTitle;
}
/**
* @return isDefault
*/
public Boolean getIsDefault() {
return this.isDefault;
}
public static final class Builder {
private String fieldName;
private String fieldTitle;
private Boolean isDefault;
private Builder() {
}
private Builder(ResultObjectHeader model) {
this.fieldName = model.fieldName;
this.fieldTitle = model.fieldTitle;
this.isDefault = model.isDefault;
}
/**
* <p>Field name</p>
*
* <strong>example:</strong>
* <p>age</p>
*/
public Builder fieldName(String fieldName) {
this.fieldName = fieldName;
return this;
}
/**
* <p>Field title.</p>
*
* <strong>example:</strong>
* <p>年龄</p>
*/
public Builder fieldTitle(String fieldTitle) {
this.fieldTitle = fieldTitle;
return this;
}
/**
* <p>Whether it is a default display field (displayed in the response, not used as a parameter)</p>
* <ul>
* <li>true: Yes</li>
* <li>false: No</li>
* </ul>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder isDefault(Boolean isDefault) {
this.isDefault = isDefault;
return this;
}
public ResultObjectHeader build() {
return new ResultObjectHeader(this);
}
}
}
/**
*
* {@link DescribeBasicSearchPageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeBasicSearchPageListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("currentPage")
private Long currentPage;
@com.aliyun.core.annotation.NameInMap("data")
private java.util.List<java.util.Map<String, ?>> data;
@com.aliyun.core.annotation.NameInMap("header")
private java.util.List<ResultObjectHeader> header;
@com.aliyun.core.annotation.NameInMap("pageSize")
private Long pageSize;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Long totalItem;
@com.aliyun.core.annotation.NameInMap("totalPage")
private Long totalPage;
private ResultObject(Builder builder) {
this.currentPage = builder.currentPage;
this.data = builder.data;
this.header = builder.header;
this.pageSize = builder.pageSize;
this.totalItem = builder.totalItem;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return currentPage
*/
public Long getCurrentPage() {
return this.currentPage;
}
/**
* @return data
*/
public java.util.List<java.util.Map<String, ?>> getData() {
return this.data;
}
/**
* @return header
*/
public java.util.List<ResultObjectHeader> getHeader() {
return this.header;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return totalItem
*/
public Long getTotalItem() {
return this.totalItem;
}
/**
* @return totalPage
*/
public Long getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private Long currentPage;
private java.util.List<java.util.Map<String, ?>> data;
private java.util.List<ResultObjectHeader> header;
private Long pageSize;
private Long totalItem;
private Long totalPage;
private Builder() {
}
private Builder(ResultObject model) {
this.currentPage = model.currentPage;
this.data = model.data;
this.header = model.header;
this.pageSize = model.pageSize;
this.totalItem = model.totalItem;
this.totalPage = model.totalPage;
}
/**
* <p>Current page number in pagination queries.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Long currentPage) {
this.currentPage = currentPage;
return this;
}
/**
* <p>Returned data object</p>
*/
public Builder data(java.util.List<java.util.Map<String, ?>> data) {
this.data = data;
return this;
}
/**
* <p>Table header</p>
*/
public Builder header(java.util.List<ResultObjectHeader> header) {
this.header = header;
return this;
}
/**
* <p>Page size, with a default value of 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>Total number of items</p>
*
* <strong>example:</strong>
* <p>6</p>
*/
public Builder totalItem(Long totalItem) {
this.totalItem = totalItem;
return this;
}
/**
* <p>Total number of pages</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder totalPage(Long totalPage) {
this.totalPage = totalPage;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeBasicStartRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeBasicStartRequest} extends {@link RequestModel}
*
* <p>DescribeBasicStartRequest</p>
*/
public class DescribeBasicStartRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("appKey")
private String appKey;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("endDs")
private String endDs;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("service")
private String service;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("startDs")
private String startDs;
private DescribeBasicStartRequest(Builder builder) {
super(builder);
this.appKey = builder.appKey;
this.endDs = builder.endDs;
this.regId = builder.regId;
this.service = builder.service;
this.startDs = builder.startDs;
}
public static Builder builder() {
return new Builder();
}
public static DescribeBasicStartRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return appKey
*/
public String getAppKey() {
return this.appKey;
}
/**
* @return endDs
*/
public String getEndDs() {
return this.endDs;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return service
*/
public String getService() {
return this.service;
}
/**
* @return startDs
*/
public String getStartDs() {
return this.startDs;
}
public static final class Builder extends Request.Builder<DescribeBasicStartRequest, Builder> {
private String appKey;
private String endDs;
private String regId;
private String service;
private String startDs;
private Builder() {
super();
}
private Builder(DescribeBasicStartRequest request) {
super(request);
this.appKey = request.appKey;
this.endDs = request.endDs;
this.regId = request.regId;
this.service = request.service;
this.startDs = request.startDs;
}
/**
* <p>Application appkey.</p>
*
* <strong>example:</strong>
* <hr>
*/
public Builder appKey(String appKey) {
this.putQueryParameter("appKey", appKey);
this.appKey = appKey;
return this;
}
/**
* <p>End time, accurate to milliseconds (ms).</p>
*
* <strong>example:</strong>
* <p>20250320</p>
*/
public Builder endDs(String endDs) {
this.putQueryParameter("endDs", endDs);
this.endDs = endDs;
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>Service to call</p>
*
* <strong>example:</strong>
* <p>service_tender_cee</p>
*/
public Builder service(String service) {
this.putQueryParameter("service", service);
this.service = service;
return this;
}
/**
* <p>Start time, accurate to milliseconds (ms).</p>
*
* <strong>example:</strong>
* <p>20250310</p>
*/
public Builder startDs(String startDs) {
this.putQueryParameter("startDs", startDs);
this.startDs = startDs;
return this;
}
@Override
public DescribeBasicStartRequest build() {
return new DescribeBasicStartRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeBasicStartResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeBasicStartResponse} extends {@link TeaModel}
*
* <p>DescribeBasicStartResponse</p>
*/
public class DescribeBasicStartResponse 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 DescribeBasicStartResponseBody body;
private DescribeBasicStartResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeBasicStartResponse 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 DescribeBasicStartResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeBasicStartResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeBasicStartResponseBody body);
@Override
DescribeBasicStartResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeBasicStartResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeBasicStartResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeBasicStartResponse 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(DescribeBasicStartResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeBasicStartResponse build() {
return new DescribeBasicStartResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeBasicStartResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeBasicStartResponseBody} extends {@link TeaModel}
*
* <p>DescribeBasicStartResponseBody</p>
*/
public class DescribeBasicStartResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("httpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private DescribeBasicStartResponseBody(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 DescribeBasicStartResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public Boolean getResultObject() {
return this.resultObject;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String httpStatusCode;
private String message;
private String requestId;
private Boolean resultObject;
private Boolean success;
private Builder() {
}
private Builder(DescribeBasicStartResponseBody 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>Return message</p>
*
* <strong>example:</strong>
* <p>The input parameter data is not valid. order_storage_company_num component not found</p>
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* <p>Request ID</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*
* <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 success(Boolean success) {
this.success = success;
return this;
}
public DescribeBasicStartResponseBody build() {
return new DescribeBasicStartResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeByPassShuntEventRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeByPassShuntEventRequest} extends {@link RequestModel}
*
* <p>DescribeByPassShuntEventRequest</p>
*/
public class DescribeByPassShuntEventRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventId")
private Long eventId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeByPassShuntEventRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.eventId = builder.eventId;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeByPassShuntEventRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return eventId
*/
public Long getEventId() {
return this.eventId;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeByPassShuntEventRequest, Builder> {
private String lang;
private Long eventId;
private String regId;
private Builder() {
super();
}
private Builder(DescribeByPassShuntEventRequest request) {
super(request);
this.lang = request.lang;
this.eventId = request.eventId;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Event ID.</p>
*
* <strong>example:</strong>
* <p>25</p>
*/
public Builder eventId(Long eventId) {
this.putQueryParameter("eventId", eventId);
this.eventId = eventId;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeByPassShuntEventRequest build() {
return new DescribeByPassShuntEventRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeByPassShuntEventResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeByPassShuntEventResponse} extends {@link TeaModel}
*
* <p>DescribeByPassShuntEventResponse</p>
*/
public class DescribeByPassShuntEventResponse 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 DescribeByPassShuntEventResponseBody body;
private DescribeByPassShuntEventResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeByPassShuntEventResponse 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 DescribeByPassShuntEventResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeByPassShuntEventResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeByPassShuntEventResponseBody body);
@Override
DescribeByPassShuntEventResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeByPassShuntEventResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeByPassShuntEventResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeByPassShuntEventResponse 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(DescribeByPassShuntEventResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeByPassShuntEventResponse build() {
return new DescribeByPassShuntEventResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeByPassShuntEventResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeByPassShuntEventResponseBody} extends {@link TeaModel}
*
* <p>DescribeByPassShuntEventResponseBody</p>
*/
public class DescribeByPassShuntEventResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("httpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private DescribeByPassShuntEventResponseBody(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 DescribeByPassShuntEventResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String httpStatusCode;
private String message;
private String requestId;
private ResultObject resultObject;
private Boolean success;
private Builder() {
}
private Builder(DescribeByPassShuntEventResponseBody 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>Error 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.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Whether it was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeByPassShuntEventResponseBody build() {
return new DescribeByPassShuntEventResponseBody(this);
}
}
/**
*
* {@link DescribeByPassShuntEventResponseBody} extends {@link TeaModel}
*
* <p>DescribeByPassShuntEventResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("eventName")
private String eventName;
private ResultObject(Builder builder) {
this.eventName = builder.eventName;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return eventName
*/
public String getEventName() {
return this.eventName;
}
public static final class Builder {
private String eventName;
private Builder() {
}
private Builder(ResultObject model) {
this.eventName = model.eventName;
}
/**
* <p>Event name.</p>
*
* <strong>example:</strong>
* <p>营销风险识别_增强版</p>
*/
public Builder eventName(String eventName) {
this.eventName = eventName;
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/DescribeCustVariableConfigListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeCustVariableConfigListRequest} extends {@link RequestModel}
*
* <p>DescribeCustVariableConfigListRequest</p>
*/
public class DescribeCustVariableConfigListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("bizType")
@com.aliyun.core.annotation.Validation(required = true)
private String bizType;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("timeType")
private String timeType;
private DescribeCustVariableConfigListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.bizType = builder.bizType;
this.regId = builder.regId;
this.timeType = builder.timeType;
}
public static Builder builder() {
return new Builder();
}
public static DescribeCustVariableConfigListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return bizType
*/
public String getBizType() {
return this.bizType;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return timeType
*/
public String getTimeType() {
return this.timeType;
}
public static final class Builder extends Request.Builder<DescribeCustVariableConfigListRequest, Builder> {
private String lang;
private String bizType;
private String regId;
private String timeType;
private Builder() {
super();
}
private Builder(DescribeCustVariableConfigListRequest request) {
super(request);
this.lang = request.lang;
this.bizType = request.bizType;
this.regId = request.regId;
this.timeType = request.timeType;
}
/**
* <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>Configuration type</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>TIME_TYPE</p>
*/
public Builder bizType(String bizType) {
this.putQueryParameter("bizType", bizType);
this.bizType = bizType;
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>Time type</p>
*
* <strong>example:</strong>
* <p>CURRENT</p>
*/
public Builder timeType(String timeType) {
this.putQueryParameter("timeType", timeType);
this.timeType = timeType;
return this;
}
@Override
public DescribeCustVariableConfigListRequest build() {
return new DescribeCustVariableConfigListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeCustVariableConfigListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeCustVariableConfigListResponse} extends {@link TeaModel}
*
* <p>DescribeCustVariableConfigListResponse</p>
*/
public class DescribeCustVariableConfigListResponse 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 DescribeCustVariableConfigListResponseBody body;
private DescribeCustVariableConfigListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeCustVariableConfigListResponse 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 DescribeCustVariableConfigListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeCustVariableConfigListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeCustVariableConfigListResponseBody body);
@Override
DescribeCustVariableConfigListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeCustVariableConfigListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeCustVariableConfigListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeCustVariableConfigListResponse 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(DescribeCustVariableConfigListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeCustVariableConfigListResponse build() {
return new DescribeCustVariableConfigListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeCustVariableConfigListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeCustVariableConfigListResponseBody} extends {@link TeaModel}
*
* <p>DescribeCustVariableConfigListResponseBody</p>
*/
public class DescribeCustVariableConfigListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
private DescribeCustVariableConfigListResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeCustVariableConfigListResponseBody 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(DescribeCustVariableConfigListResponseBody 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 DescribeCustVariableConfigListResponseBody build() {
return new DescribeCustVariableConfigListResponseBody(this);
}
}
/**
*
* {@link DescribeCustVariableConfigListResponseBody} extends {@link TeaModel}
*
* <p>DescribeCustVariableConfigListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("configKey")
private String configKey;
@com.aliyun.core.annotation.NameInMap("configValue")
private String configValue;
private ResultObject(Builder builder) {
this.configKey = builder.configKey;
this.configValue = builder.configValue;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return configKey
*/
public String getConfigKey() {
return this.configKey;
}
/**
* @return configValue
*/
public String getConfigValue() {
return this.configValue;
}
public static final class Builder {
private String configKey;
private String configValue;
private Builder() {
}
private Builder(ResultObject model) {
this.configKey = model.configKey;
this.configValue = model.configValue;
}
/**
* <p>Configuration key</p>
*
* <strong>example:</strong>
* <p>COUNT</p>
*/
public Builder configKey(String configKey) {
this.configKey = configKey;
return this;
}
/**
* <p>Configuration value</p>
*
* <strong>example:</strong>
* <p>累计</p>
*/
public Builder configValue(String configValue) {
this.configValue = configValue;
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/DescribeCustVariableDetailRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeCustVariableDetailRequest} extends {@link RequestModel}
*
* <p>DescribeCustVariableDetailRequest</p>
*/
public class DescribeCustVariableDetailRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("id")
@com.aliyun.core.annotation.Validation(required = true)
private Long id;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeCustVariableDetailRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.id = builder.id;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeCustVariableDetailRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeCustVariableDetailRequest, Builder> {
private String lang;
private Long id;
private String regId;
private Builder() {
super();
}
private Builder(DescribeCustVariableDetailRequest request) {
super(request);
this.lang = request.lang;
this.id = request.id;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Primary key ID of the cumulative variable</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>2793</p>
*/
public Builder id(Long id) {
this.putQueryParameter("id", id);
this.id = id;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeCustVariableDetailRequest build() {
return new DescribeCustVariableDetailRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeCustVariableDetailResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeCustVariableDetailResponse} extends {@link TeaModel}
*
* <p>DescribeCustVariableDetailResponse</p>
*/
public class DescribeCustVariableDetailResponse 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 DescribeCustVariableDetailResponseBody body;
private DescribeCustVariableDetailResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeCustVariableDetailResponse 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 DescribeCustVariableDetailResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeCustVariableDetailResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeCustVariableDetailResponseBody body);
@Override
DescribeCustVariableDetailResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeCustVariableDetailResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeCustVariableDetailResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeCustVariableDetailResponse 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(DescribeCustVariableDetailResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeCustVariableDetailResponse build() {
return new DescribeCustVariableDetailResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeCustVariableDetailResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeCustVariableDetailResponseBody} extends {@link TeaModel}
*
* <p>DescribeCustVariableDetailResponseBody</p>
*/
public class DescribeCustVariableDetailResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
private DescribeCustVariableDetailResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeCustVariableDetailResponseBody 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(DescribeCustVariableDetailResponseBody 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 DescribeCustVariableDetailResponseBody build() {
return new DescribeCustVariableDetailResponseBody(this);
}
}
/**
*
* {@link DescribeCustVariableDetailResponseBody} extends {@link TeaModel}
*
* <p>DescribeCustVariableDetailResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("condition")
private String condition;
@com.aliyun.core.annotation.NameInMap("dataVersion")
private Long dataVersion;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("eventCodes")
private String eventCodes;
@com.aliyun.core.annotation.NameInMap("historyValueType")
private String historyValueType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("object")
private String object;
@com.aliyun.core.annotation.NameInMap("outputs")
private String outputs;
@com.aliyun.core.annotation.NameInMap("subject")
private String subject;
@com.aliyun.core.annotation.NameInMap("timeType")
private String timeType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("twCount")
private String twCount;
@com.aliyun.core.annotation.NameInMap("velocityFC")
private String velocityFC;
@com.aliyun.core.annotation.NameInMap("velocityTW")
private String velocityTW;
private ResultObject(Builder builder) {
this.condition = builder.condition;
this.dataVersion = builder.dataVersion;
this.description = builder.description;
this.eventCodes = builder.eventCodes;
this.historyValueType = builder.historyValueType;
this.id = builder.id;
this.object = builder.object;
this.outputs = builder.outputs;
this.subject = builder.subject;
this.timeType = builder.timeType;
this.title = builder.title;
this.twCount = builder.twCount;
this.velocityFC = builder.velocityFC;
this.velocityTW = builder.velocityTW;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return condition
*/
public String getCondition() {
return this.condition;
}
/**
* @return dataVersion
*/
public Long getDataVersion() {
return this.dataVersion;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return eventCodes
*/
public String getEventCodes() {
return this.eventCodes;
}
/**
* @return historyValueType
*/
public String getHistoryValueType() {
return this.historyValueType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return object
*/
public String getObject() {
return this.object;
}
/**
* @return outputs
*/
public String getOutputs() {
return this.outputs;
}
/**
* @return subject
*/
public String getSubject() {
return this.subject;
}
/**
* @return timeType
*/
public String getTimeType() {
return this.timeType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return twCount
*/
public String getTwCount() {
return this.twCount;
}
/**
* @return velocityFC
*/
public String getVelocityFC() {
return this.velocityFC;
}
/**
* @return velocityTW
*/
public String getVelocityTW() {
return this.velocityTW;
}
public static final class Builder {
private String condition;
private Long dataVersion;
private String description;
private String eventCodes;
private String historyValueType;
private Long id;
private String object;
private String outputs;
private String subject;
private String timeType;
private String title;
private String twCount;
private String velocityFC;
private String velocityTW;
private Builder() {
}
private Builder(ResultObject model) {
this.condition = model.condition;
this.dataVersion = model.dataVersion;
this.description = model.description;
this.eventCodes = model.eventCodes;
this.historyValueType = model.historyValueType;
this.id = model.id;
this.object = model.object;
this.outputs = model.outputs;
this.subject = model.subject;
this.timeType = model.timeType;
this.title = model.title;
this.twCount = model.twCount;
this.velocityFC = model.velocityFC;
this.velocityTW = model.velocityTW;
}
/**
* <p>Condition value.</p>
*
* <strong>example:</strong>
* <p>{"currentId":1,"deepCount":0,"list":[{"currentId":2,"deepCount":1,"left":{"code":"accountId","fieldType":"STRING","functionName":"","hasRightVariable":false,"name":"accountId"},"operatorCode":"isNotEmptyWrapper","parentId":1,"right":{"code":""A\nB\nC"","functionName":"","name":"","rightVariableType":"constant"}}],"parentId":0,"relationship":"and"}</p>
*/
public Builder condition(String condition) {
this.condition = condition;
return this;
}
/**
* <p>Data version.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder dataVersion(Long dataVersion) {
this.dataVersion = dataVersion;
return this;
}
/**
* <p>Description information.</p>
*
* <strong>example:</strong>
* <p>变量描述</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Event code.</p>
*
* <strong>example:</strong>
* <p>de_ahespg8137</p>
*/
public Builder eventCodes(String eventCodes) {
this.eventCodes = eventCodes;
return this;
}
/**
* <p>Value type</p>
*
* <strong>example:</strong>
* <p>EARLIEST</p>
*/
public Builder historyValueType(String historyValueType) {
this.historyValueType = historyValueType;
return this;
}
/**
* <p>Primary key ID of the cumulative variable</p>
*
* <strong>example:</strong>
* <p>2793</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Cumulative object</p>
*
* <strong>example:</strong>
* <p>DEpage</p>
*/
public Builder object(String object) {
this.object = object;
return this;
}
/**
* <p>Variable return type</p>
*
* <strong>example:</strong>
* <p>DOUBLE</p>
*/
public Builder outputs(String outputs) {
this.outputs = outputs;
return this;
}
/**
* <p>Main object</p>
*
* <strong>example:</strong>
* <p>DEpname</p>
*/
public Builder subject(String subject) {
this.subject = subject;
return this;
}
/**
* <p>Time slice type</p>
*
* <strong>example:</strong>
* <p>NEAR</p>
*/
public Builder timeType(String timeType) {
this.timeType = timeType;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>累计变量求平均值</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>Time count</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder twCount(String twCount) {
this.twCount = twCount;
return this;
}
/**
* <p>Variable type</p>
*
* <strong>example:</strong>
* <p>DISTINCT</p>
*/
public Builder velocityFC(String velocityFC) {
this.velocityFC = velocityFC;
return this;
}
/**
* <p>Time slice unit</p>
*
* <strong>example:</strong>
* <p>HOUR_1</p>
*/
public Builder velocityTW(String velocityTW) {
this.velocityTW = velocityTW;
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/DescribeCustVariablePageRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeCustVariablePageRequest} extends {@link RequestModel}
*
* <p>DescribeCustVariablePageRequest</p>
*/
public class DescribeCustVariablePageRequest 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 Integer currentPage;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@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 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("status")
private String status;
private DescribeCustVariablePageRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.createType = builder.createType;
this.currentPage = builder.currentPage;
this.description = builder.description;
this.eventCode = builder.eventCode;
this.pageSize = builder.pageSize;
this.regId = builder.regId;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static DescribeCustVariablePageRequest 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 Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
public static final class Builder extends Request.Builder<DescribeCustVariablePageRequest, Builder> {
private String lang;
private String createType;
private Integer currentPage;
private String description;
private String eventCode;
private Integer pageSize;
private String regId;
private String status;
private Builder() {
super();
}
private Builder(DescribeCustVariablePageRequest request) {
super(request);
this.lang = request.lang;
this.createType = request.createType;
this.currentPage = request.currentPage;
this.description = request.description;
this.eventCode = request.eventCode;
this.pageSize = request.pageSize;
this.regId = request.regId;
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>Creation type.</p>
*
* <strong>example:</strong>
* <p>NORMAL</p>
*/
public Builder createType(String createType) {
this.putQueryParameter("createType", createType);
this.createType = createType;
return this;
}
/**
* <p>Pagination parameter, 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>Description.</p>
*
* <strong>example:</strong>
* <p>累计变量描述</p>
*/
public Builder description(String description) {
this.putQueryParameter("description", description);
this.description = description;
return this;
}
/**
* <p>Event code.</p>
*
* <strong>example:</strong>
* <p>de_aheldm3876</p>
*/
public Builder eventCode(String eventCode) {
this.putQueryParameter("eventCode", eventCode);
this.eventCode = eventCode;
return this;
}
/**
* <p>Number of records per page, default value: 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>status.</p>
*
* <strong>example:</strong>
* <p>ENABLE</p>
*/
public Builder status(String status) {
this.putQueryParameter("status", status);
this.status = status;
return this;
}
@Override
public DescribeCustVariablePageRequest build() {
return new DescribeCustVariablePageRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeCustVariablePageResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeCustVariablePageResponse} extends {@link TeaModel}
*
* <p>DescribeCustVariablePageResponse</p>
*/
public class DescribeCustVariablePageResponse 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 DescribeCustVariablePageResponseBody body;
private DescribeCustVariablePageResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeCustVariablePageResponse 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 DescribeCustVariablePageResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeCustVariablePageResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeCustVariablePageResponseBody body);
@Override
DescribeCustVariablePageResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeCustVariablePageResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeCustVariablePageResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeCustVariablePageResponse 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(DescribeCustVariablePageResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeCustVariablePageResponse build() {
return new DescribeCustVariablePageResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeCustVariablePageResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeCustVariablePageResponseBody} extends {@link TeaModel}
*
* <p>DescribeCustVariablePageResponseBody</p>
*/
public class DescribeCustVariablePageResponseBody 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 DescribeCustVariablePageResponseBody(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 DescribeCustVariablePageResponseBody 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(DescribeCustVariablePageResponseBody 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 DescribeCustVariablePageResponseBody build() {
return new DescribeCustVariablePageResponseBody(this);
}
}
/**
*
* {@link DescribeCustVariablePageResponseBody} extends {@link TeaModel}
*
* <p>DescribeCustVariablePageResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("dataVersion")
private Long dataVersion;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("eventName")
private String eventName;
@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("ruleList")
private java.util.List<String> ruleList;
@com.aliyun.core.annotation.NameInMap("status")
private String status;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
private ResultObject(Builder builder) {
this.dataVersion = builder.dataVersion;
this.description = builder.description;
this.eventName = builder.eventName;
this.gmtModified = builder.gmtModified;
this.id = builder.id;
this.name = builder.name;
this.ruleList = builder.ruleList;
this.status = builder.status;
this.title = builder.title;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return dataVersion
*/
public Long getDataVersion() {
return this.dataVersion;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return eventName
*/
public String getEventName() {
return this.eventName;
}
/**
* @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 ruleList
*/
public java.util.List<String> getRuleList() {
return this.ruleList;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
public static final class Builder {
private Long dataVersion;
private String description;
private String eventName;
private Long gmtModified;
private Long id;
private String name;
private java.util.List<String> ruleList;
private String status;
private String title;
private Builder() {
}
private Builder(ResultObject model) {
this.dataVersion = model.dataVersion;
this.description = model.description;
this.eventName = model.eventName;
this.gmtModified = model.gmtModified;
this.id = model.id;
this.name = model.name;
this.ruleList = model.ruleList;
this.status = model.status;
this.title = model.title;
}
/**
* <p>Data version.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder dataVersion(Long dataVersion) {
this.dataVersion = dataVersion;
return this;
}
/**
* <p>Description information.</p>
*
* <strong>example:</strong>
* <p>累计变量描述</p>
*/
public Builder description(String description) {
this.description = description;
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(Long gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* <p>Primary key ID of accumulated variable.</p>
*
* <strong>example:</strong>
* <p>497</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Accumulated variable name: generated by backend.</p>
*
* <strong>example:</strong>
* <p>xLMfE9K161d</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Associated Strategies.</p>
*/
public Builder ruleList(java.util.List<String> ruleList) {
this.ruleList = ruleList;
return this;
}
/**
* <p>Status.</p>
*
* <strong>example:</strong>
* <p>ENABLE</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>累计变量名称</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDataSourceDataDownloadUrlRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDataSourceDataDownloadUrlRequest} extends {@link RequestModel}
*
* <p>DescribeDataSourceDataDownloadUrlRequest</p>
*/
public class DescribeDataSourceDataDownloadUrlRequest 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("dataSourceId")
@com.aliyun.core.annotation.Validation(required = true)
private Long dataSourceId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
@com.aliyun.core.annotation.Validation(required = true)
private String regId;
private DescribeDataSourceDataDownloadUrlRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.dataSourceId = builder.dataSourceId;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeDataSourceDataDownloadUrlRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return dataSourceId
*/
public Long getDataSourceId() {
return this.dataSourceId;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeDataSourceDataDownloadUrlRequest, Builder> {
private String lang;
private Long dataSourceId;
private String regId;
private Builder() {
super();
}
private Builder(DescribeDataSourceDataDownloadUrlRequest request) {
super(request);
this.lang = request.lang;
this.dataSourceId = request.dataSourceId;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Data source ID.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>69</p>
*/
public Builder dataSourceId(Long dataSourceId) {
this.putQueryParameter("dataSourceId", dataSourceId);
this.dataSourceId = dataSourceId;
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 DescribeDataSourceDataDownloadUrlRequest build() {
return new DescribeDataSourceDataDownloadUrlRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDataSourceDataDownloadUrlResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDataSourceDataDownloadUrlResponse} extends {@link TeaModel}
*
* <p>DescribeDataSourceDataDownloadUrlResponse</p>
*/
public class DescribeDataSourceDataDownloadUrlResponse 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 DescribeDataSourceDataDownloadUrlResponseBody body;
private DescribeDataSourceDataDownloadUrlResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeDataSourceDataDownloadUrlResponse 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 DescribeDataSourceDataDownloadUrlResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeDataSourceDataDownloadUrlResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeDataSourceDataDownloadUrlResponseBody body);
@Override
DescribeDataSourceDataDownloadUrlResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeDataSourceDataDownloadUrlResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeDataSourceDataDownloadUrlResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeDataSourceDataDownloadUrlResponse 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(DescribeDataSourceDataDownloadUrlResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeDataSourceDataDownloadUrlResponse build() {
return new DescribeDataSourceDataDownloadUrlResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDataSourceDataDownloadUrlResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDataSourceDataDownloadUrlResponseBody} extends {@link TeaModel}
*
* <p>DescribeDataSourceDataDownloadUrlResponseBody</p>
*/
public class DescribeDataSourceDataDownloadUrlResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
private DescribeDataSourceDataDownloadUrlResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeDataSourceDataDownloadUrlResponseBody 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(DescribeDataSourceDataDownloadUrlResponseBody 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 DescribeDataSourceDataDownloadUrlResponseBody build() {
return new DescribeDataSourceDataDownloadUrlResponseBody(this);
}
}
/**
*
* {@link DescribeDataSourceDataDownloadUrlResponseBody} extends {@link TeaModel}
*
* <p>DescribeDataSourceDataDownloadUrlResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("downloadFileUrl")
private String downloadFileUrl;
private ResultObject(Builder builder) {
this.downloadFileUrl = builder.downloadFileUrl;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return downloadFileUrl
*/
public String getDownloadFileUrl() {
return this.downloadFileUrl;
}
public static final class Builder {
private String downloadFileUrl;
private Builder() {
}
private Builder(ResultObject model) {
this.downloadFileUrl = model.downloadFileUrl;
}
/**
* <p>Download URL.</p>
*
* <strong>example:</strong>
* <p>https:/xxxxx.oss-cn-xxxxxx.aliyuncs.com/xxxx/xxx/xxxxxx/xxx/xxxxxxxxxx?Expires=1753421064&OSSAccessKeyId=xxxxxxx&Signature=xxxxxxx%3D</p>
*/
public Builder downloadFileUrl(String downloadFileUrl) {
this.downloadFileUrl = downloadFileUrl;
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/DescribeDataSourceFieldsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDataSourceFieldsRequest} extends {@link RequestModel}
*
* <p>DescribeDataSourceFieldsRequest</p>
*/
public class DescribeDataSourceFieldsRequest 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("dataSourceCode")
@com.aliyun.core.annotation.Validation(required = true)
private String dataSourceCode;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
@com.aliyun.core.annotation.Validation(required = true)
private String regId;
private DescribeDataSourceFieldsRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.dataSourceCode = builder.dataSourceCode;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeDataSourceFieldsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return dataSourceCode
*/
public String getDataSourceCode() {
return this.dataSourceCode;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeDataSourceFieldsRequest, Builder> {
private String lang;
private String dataSourceCode;
private String regId;
private Builder() {
super();
}
private Builder(DescribeDataSourceFieldsRequest request) {
super(request);
this.lang = request.lang;
this.dataSourceCode = request.dataSourceCode;
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>Data source code</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>date_source</p>
*/
public Builder dataSourceCode(String dataSourceCode) {
this.putQueryParameter("dataSourceCode", dataSourceCode);
this.dataSourceCode = dataSourceCode;
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 DescribeDataSourceFieldsRequest build() {
return new DescribeDataSourceFieldsRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDataSourceFieldsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDataSourceFieldsResponse} extends {@link TeaModel}
*
* <p>DescribeDataSourceFieldsResponse</p>
*/
public class DescribeDataSourceFieldsResponse 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 DescribeDataSourceFieldsResponseBody body;
private DescribeDataSourceFieldsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeDataSourceFieldsResponse 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 DescribeDataSourceFieldsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeDataSourceFieldsResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeDataSourceFieldsResponseBody body);
@Override
DescribeDataSourceFieldsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeDataSourceFieldsResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeDataSourceFieldsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeDataSourceFieldsResponse 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(DescribeDataSourceFieldsResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeDataSourceFieldsResponse build() {
return new DescribeDataSourceFieldsResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDataSourceFieldsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDataSourceFieldsResponseBody} extends {@link TeaModel}
*
* <p>DescribeDataSourceFieldsResponseBody</p>
*/
public class DescribeDataSourceFieldsResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
private DescribeDataSourceFieldsResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeDataSourceFieldsResponseBody 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(DescribeDataSourceFieldsResponseBody 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 DescribeDataSourceFieldsResponseBody build() {
return new DescribeDataSourceFieldsResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDataSourcePageListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDataSourcePageListRequest} extends {@link RequestModel}
*
* <p>DescribeDataSourcePageListRequest</p>
*/
public class DescribeDataSourcePageListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("SourceIp")
private String sourceIp;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("currentPage")
private Long currentPage;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("pageSize")
private Long 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("type")
private String type;
private DescribeDataSourcePageListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.sourceIp = builder.sourceIp;
this.currentPage = builder.currentPage;
this.name = builder.name;
this.pageSize = builder.pageSize;
this.regId = builder.regId;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static DescribeDataSourcePageListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return sourceIp
*/
public String getSourceIp() {
return this.sourceIp;
}
/**
* @return currentPage
*/
public Long getCurrentPage() {
return this.currentPage;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
public static final class Builder extends Request.Builder<DescribeDataSourcePageListRequest, Builder> {
private String lang;
private String sourceIp;
private Long currentPage;
private String name;
private Long pageSize;
private String regId;
private String type;
private Builder() {
super();
}
private Builder(DescribeDataSourcePageListRequest request) {
super(request);
this.lang = request.lang;
this.sourceIp = request.sourceIp;
this.currentPage = request.currentPage;
this.name = request.name;
this.pageSize = request.pageSize;
this.regId = request.regId;
this.type = request.type;
}
/**
* <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>Request source IP.</p>
*
* <strong>example:</strong>
* <p>220.250.21.83</p>
*/
public Builder sourceIp(String sourceIp) {
this.putQueryParameter("SourceIp", sourceIp);
this.sourceIp = sourceIp;
return this;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Long currentPage) {
this.putQueryParameter("currentPage", currentPage);
this.currentPage = currentPage;
return this;
}
/**
* <p>Variable name</p>
*
* <strong>example:</strong>
* <p>data_source</p>
*/
public Builder name(String name) {
this.putQueryParameter("name", name);
this.name = name;
return this;
}
/**
* <p>Page size, default value is 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Long pageSize) {
this.putQueryParameter("pageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Type</p>
*
* <strong>example:</strong>
* <p>FILE</p>
*/
public Builder type(String type) {
this.putQueryParameter("type", type);
this.type = type;
return this;
}
@Override
public DescribeDataSourcePageListRequest build() {
return new DescribeDataSourcePageListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDataSourcePageListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDataSourcePageListResponse} extends {@link TeaModel}
*
* <p>DescribeDataSourcePageListResponse</p>
*/
public class DescribeDataSourcePageListResponse 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 DescribeDataSourcePageListResponseBody body;
private DescribeDataSourcePageListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeDataSourcePageListResponse 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 DescribeDataSourcePageListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeDataSourcePageListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeDataSourcePageListResponseBody body);
@Override
DescribeDataSourcePageListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeDataSourcePageListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeDataSourcePageListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeDataSourcePageListResponse 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(DescribeDataSourcePageListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeDataSourcePageListResponse build() {
return new DescribeDataSourcePageListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDataSourcePageListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDataSourcePageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeDataSourcePageListResponseBody</p>
*/
public class DescribeDataSourcePageListResponseBody 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 DescribeDataSourcePageListResponseBody(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 DescribeDataSourcePageListResponseBody 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(DescribeDataSourcePageListResponseBody 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>Return object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Total items</p>
*
* <strong>example:</strong>
* <p>3</p>
*/
public Builder totalItem(Integer totalItem) {
this.totalItem = totalItem;
return this;
}
/**
* <p>Total pages</p>
*
* <strong>example:</strong>
* <p>9</p>
*/
public Builder totalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public DescribeDataSourcePageListResponseBody build() {
return new DescribeDataSourcePageListResponseBody(this);
}
}
/**
*
* {@link DescribeDataSourcePageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeDataSourcePageListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@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 String gmtCreate;
@com.aliyun.core.annotation.NameInMap("gmtModified")
private String gmtModified;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("modifier")
private String modifier;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("total")
private Long total;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
private ResultObject(Builder builder) {
this.creator = builder.creator;
this.description = builder.description;
this.gmtCreate = builder.gmtCreate;
this.gmtModified = builder.gmtModified;
this.id = builder.id;
this.modifier = builder.modifier;
this.name = builder.name;
this.total = builder.total;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return creator
*/
public String getCreator() {
return this.creator;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return gmtCreate
*/
public String getGmtCreate() {
return this.gmtCreate;
}
/**
* @return gmtModified
*/
public String getGmtModified() {
return this.gmtModified;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return modifier
*/
public String getModifier() {
return this.modifier;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return total
*/
public Long getTotal() {
return this.total;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
public static final class Builder {
private String creator;
private String description;
private String gmtCreate;
private String gmtModified;
private Long id;
private String modifier;
private String name;
private Long total;
private String type;
private Builder() {
}
private Builder(ResultObject model) {
this.creator = model.creator;
this.description = model.description;
this.gmtCreate = model.gmtCreate;
this.gmtModified = model.gmtModified;
this.id = model.id;
this.modifier = model.modifier;
this.name = model.name;
this.total = model.total;
this.type = model.type;
}
/**
* <p>Creator of the data source.</p>
*
* <strong>example:</strong>
* <p>xxxx</p>
*/
public Builder creator(String creator) {
this.creator = creator;
return this;
}
/**
* <p>Data source description.</p>
*
* <strong>example:</strong>
* <p>描述</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Time when the data source was created.</p>
*
* <strong>example:</strong>
* <p>1621578648000</p>
*/
public Builder gmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* <p>Time when the data source was last modified.</p>
*
* <strong>example:</strong>
* <p>1565701886000</p>
*/
public Builder gmtModified(String gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* <p>Data source ID.</p>
*
* <strong>example:</strong>
* <p>497</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Last modifier.</p>
*
* <strong>example:</strong>
* <p>xxxxx</p>
*/
public Builder modifier(String modifier) {
this.modifier = modifier;
return this;
}
/**
* <p>Data source name.</p>
*
* <strong>example:</strong>
* <p>data_source</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Total pages.</p>
*
* <strong>example:</strong>
* <p>4</p>
*/
public Builder total(Long total) {
this.total = total;
return this;
}
/**
* <p>Data source type.</p>
*
* <strong>example:</strong>
* <p>FILE</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/DescribeDecisionResultFluctuationRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDecisionResultFluctuationRequest} extends {@link RequestModel}
*
* <p>DescribeDecisionResultFluctuationRequest</p>
*/
public class DescribeDecisionResultFluctuationRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventCodes")
private String eventCodes;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeDecisionResultFluctuationRequest(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 DescribeDecisionResultFluctuationRequest 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<DescribeDecisionResultFluctuationRequest, Builder> {
private String lang;
private String eventCodes;
private String regId;
private Builder() {
super();
}
private Builder(DescribeDecisionResultFluctuationRequest request) {
super(request);
this.lang = request.lang;
this.eventCodes = request.eventCodes;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Event code.</p>
*
* <strong>example:</strong>
* <p>de_ahqhsw7665,de_ahqhsw7622</p>
*/
public Builder eventCodes(String eventCodes) {
this.putQueryParameter("eventCodes", eventCodes);
this.eventCodes = eventCodes;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeDecisionResultFluctuationRequest build() {
return new DescribeDecisionResultFluctuationRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDecisionResultFluctuationResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDecisionResultFluctuationResponse} extends {@link TeaModel}
*
* <p>DescribeDecisionResultFluctuationResponse</p>
*/
public class DescribeDecisionResultFluctuationResponse 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 DescribeDecisionResultFluctuationResponseBody body;
private DescribeDecisionResultFluctuationResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeDecisionResultFluctuationResponse 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 DescribeDecisionResultFluctuationResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeDecisionResultFluctuationResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeDecisionResultFluctuationResponseBody body);
@Override
DescribeDecisionResultFluctuationResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeDecisionResultFluctuationResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeDecisionResultFluctuationResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeDecisionResultFluctuationResponse 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(DescribeDecisionResultFluctuationResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeDecisionResultFluctuationResponse build() {
return new DescribeDecisionResultFluctuationResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDecisionResultFluctuationResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDecisionResultFluctuationResponseBody} extends {@link TeaModel}
*
* <p>DescribeDecisionResultFluctuationResponseBody</p>
*/
public class DescribeDecisionResultFluctuationResponseBody 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 DescribeDecisionResultFluctuationResponseBody(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 DescribeDecisionResultFluctuationResponseBody 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(DescribeDecisionResultFluctuationResponseBody 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.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Indicates whether the operation was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeDecisionResultFluctuationResponseBody build() {
return new DescribeDecisionResultFluctuationResponseBody(this);
}
}
/**
*
* {@link DescribeDecisionResultFluctuationResponseBody} extends {@link TeaModel}
*
* <p>DescribeDecisionResultFluctuationResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("status")
private String status;
@com.aliyun.core.annotation.NameInMap("todayNum")
private Long todayNum;
@com.aliyun.core.annotation.NameInMap("withinSevenDayNum")
private String withinSevenDayNum;
@com.aliyun.core.annotation.NameInMap("withinThirtyDayNum")
private String withinThirtyDayNum;
@com.aliyun.core.annotation.NameInMap("withinThreeDayNum")
private String withinThreeDayNum;
@com.aliyun.core.annotation.NameInMap("yesterdayNum")
private Long yesterdayNum;
private ResultObject(Builder builder) {
this.status = builder.status;
this.todayNum = builder.todayNum;
this.withinSevenDayNum = builder.withinSevenDayNum;
this.withinThirtyDayNum = builder.withinThirtyDayNum;
this.withinThreeDayNum = builder.withinThreeDayNum;
this.yesterdayNum = builder.yesterdayNum;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return todayNum
*/
public Long getTodayNum() {
return this.todayNum;
}
/**
* @return withinSevenDayNum
*/
public String getWithinSevenDayNum() {
return this.withinSevenDayNum;
}
/**
* @return withinThirtyDayNum
*/
public String getWithinThirtyDayNum() {
return this.withinThirtyDayNum;
}
/**
* @return withinThreeDayNum
*/
public String getWithinThreeDayNum() {
return this.withinThreeDayNum;
}
/**
* @return yesterdayNum
*/
public Long getYesterdayNum() {
return this.yesterdayNum;
}
public static final class Builder {
private String status;
private Long todayNum;
private String withinSevenDayNum;
private String withinThirtyDayNum;
private String withinThreeDayNum;
private Long yesterdayNum;
private Builder() {
}
private Builder(ResultObject model) {
this.status = model.status;
this.todayNum = model.todayNum;
this.withinSevenDayNum = model.withinSevenDayNum;
this.withinThirtyDayNum = model.withinThirtyDayNum;
this.withinThreeDayNum = model.withinThreeDayNum;
this.yesterdayNum = model.yesterdayNum;
}
/**
* <p>Execution status.</p>
*
* <strong>example:</strong>
* <p>PASS</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* <p>Today"s count</p>
*
* <strong>example:</strong>
* <p>100</p>
*/
public Builder todayNum(Long todayNum) {
this.todayNum = todayNum;
return this;
}
/**
* <p>Count within the last seven days</p>
*
* <strong>example:</strong>
* <p>600</p>
*/
public Builder withinSevenDayNum(String withinSevenDayNum) {
this.withinSevenDayNum = withinSevenDayNum;
return this;
}
/**
* <p>Count within the last thirty days</p>
*
* <strong>example:</strong>
* <p>1200</p>
*/
public Builder withinThirtyDayNum(String withinThirtyDayNum) {
this.withinThirtyDayNum = withinThirtyDayNum;
return this;
}
/**
* <p>Count within the last three days</p>
*
* <strong>example:</strong>
* <p>300</p>
*/
public Builder withinThreeDayNum(String withinThreeDayNum) {
this.withinThreeDayNum = withinThreeDayNum;
return this;
}
/**
* <p>Yesterday"s count</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder yesterdayNum(Long yesterdayNum) {
this.yesterdayNum = yesterdayNum;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDecisionResultTrendRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDecisionResultTrendRequest} extends {@link RequestModel}
*
* <p>DescribeDecisionResultTrendRequest</p>
*/
public class DescribeDecisionResultTrendRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("beginTime")
private Long beginTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("endTime")
private Long endTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventCodes")
private String eventCodes;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeDecisionResultTrendRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.beginTime = builder.beginTime;
this.endTime = builder.endTime;
this.eventCodes = builder.eventCodes;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeDecisionResultTrendRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return beginTime
*/
public Long getBeginTime() {
return this.beginTime;
}
/**
* @return endTime
*/
public Long getEndTime() {
return this.endTime;
}
/**
* @return eventCodes
*/
public String getEventCodes() {
return this.eventCodes;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeDecisionResultTrendRequest, Builder> {
private String lang;
private Long beginTime;
private Long endTime;
private String eventCodes;
private String regId;
private Builder() {
super();
}
private Builder(DescribeDecisionResultTrendRequest request) {
super(request);
this.lang = request.lang;
this.beginTime = request.beginTime;
this.endTime = request.endTime;
this.eventCodes = request.eventCodes;
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 timestamp, in milliseconds.</p>
*
* <strong>example:</strong>
* <p>1737101348000</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>1747101348000</p>
*/
public Builder endTime(Long endTime) {
this.putQueryParameter("endTime", endTime);
this.endTime = endTime;
return this;
}
/**
* <p>Event code.</p>
*
* <strong>example:</strong>
* <p>de_ahqhsw7665,de_agbzfi5134</p>
*/
public Builder eventCodes(String eventCodes) {
this.putQueryParameter("eventCodes", eventCodes);
this.eventCodes = eventCodes;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeDecisionResultTrendRequest build() {
return new DescribeDecisionResultTrendRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDecisionResultTrendResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDecisionResultTrendResponse} extends {@link TeaModel}
*
* <p>DescribeDecisionResultTrendResponse</p>
*/
public class DescribeDecisionResultTrendResponse 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 DescribeDecisionResultTrendResponseBody body;
private DescribeDecisionResultTrendResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeDecisionResultTrendResponse 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 DescribeDecisionResultTrendResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeDecisionResultTrendResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeDecisionResultTrendResponseBody body);
@Override
DescribeDecisionResultTrendResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeDecisionResultTrendResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeDecisionResultTrendResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeDecisionResultTrendResponse 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(DescribeDecisionResultTrendResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeDecisionResultTrendResponse build() {
return new DescribeDecisionResultTrendResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDecisionResultTrendResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDecisionResultTrendResponseBody} extends {@link TeaModel}
*
* <p>DescribeDecisionResultTrendResponseBody</p>
*/
public class DescribeDecisionResultTrendResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("httpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private DescribeDecisionResultTrendResponseBody(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 DescribeDecisionResultTrendResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String httpStatusCode;
private String message;
private String requestId;
private ResultObject resultObject;
private Boolean success;
private Builder() {
}
private Builder(DescribeDecisionResultTrendResponseBody 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.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Whether the request was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeDecisionResultTrendResponseBody build() {
return new DescribeDecisionResultTrendResponseBody(this);
}
}
/**
*
* {@link DescribeDecisionResultTrendResponseBody} extends {@link TeaModel}
*
* <p>DescribeDecisionResultTrendResponseBody</p>
*/
public static class Data extends TeaModel {
@com.aliyun.core.annotation.NameInMap("num")
private Long num;
@com.aliyun.core.annotation.NameInMap("scale")
private String scale;
private Data(Builder builder) {
this.num = builder.num;
this.scale = builder.scale;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return num
*/
public Long getNum() {
return this.num;
}
/**
* @return scale
*/
public String getScale() {
return this.scale;
}
public static final class Builder {
private Long num;
private String scale;
private Builder() {
}
private Builder(Data model) {
this.num = model.num;
this.scale = model.scale;
}
/**
* <p>Number</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder num(Long num) {
this.num = num;
return this;
}
/**
* <p>ratio</p>
*
* <strong>example:</strong>
* <p>5.56%</p>
*/
public Builder scale(String scale) {
this.scale = scale;
return this;
}
public Data build() {
return new Data(this);
}
}
}
/**
*
* {@link DescribeDecisionResultTrendResponseBody} extends {@link TeaModel}
*
* <p>DescribeDecisionResultTrendResponseBody</p>
*/
public static class Series extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private java.util.List<Data> data;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
private Series(Builder builder) {
this.data = builder.data;
this.name = builder.name;
}
public static Builder builder() {
return new Builder();
}
public static Series create() {
return builder().build();
}
/**
* @return data
*/
public java.util.List<Data> getData() {
return this.data;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
public static final class Builder {
private java.util.List<Data> data;
private String name;
private Builder() {
}
private Builder(Series model) {
this.data = model.data;
this.name = model.name;
}
/**
* <p>Returned data object</p>
*/
public Builder data(java.util.List<Data> data) {
this.data = data;
return this;
}
/**
* <p>Name.</p>
*
* <strong>example:</strong>
* <p>IpTag_FFF</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
public Series build() {
return new Series(this);
}
}
}
/**
*
* {@link DescribeDecisionResultTrendResponseBody} extends {@link TeaModel}
*
* <p>DescribeDecisionResultTrendResponseBody</p>
*/
public static class Xaxis extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private java.util.List<String> data;
private Xaxis(Builder builder) {
this.data = builder.data;
}
public static Builder builder() {
return new Builder();
}
public static Xaxis create() {
return builder().build();
}
/**
* @return data
*/
public java.util.List<String> getData() {
return this.data;
}
public static final class Builder {
private java.util.List<String> data;
private Builder() {
}
private Builder(Xaxis model) {
this.data = model.data;
}
/**
* <p>X-axis data structure.</p>
*/
public Builder data(java.util.List<String> data) {
this.data = data;
return this;
}
public Xaxis build() {
return new Xaxis(this);
}
}
}
/**
*
* {@link DescribeDecisionResultTrendResponseBody} extends {@link TeaModel}
*
* <p>DescribeDecisionResultTrendResponseBody</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>Chart data</p>
*/
public Builder series(java.util.List<Series> series) {
this.series = series;
return this;
}
/**
* <p>X-axis data</p>
*/
public Builder xaxis(Xaxis xaxis) {
this.xaxis = xaxis;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDetailStartRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDetailStartRequest} extends {@link RequestModel}
*
* <p>DescribeDetailStartRequest</p>
*/
public class DescribeDetailStartRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("appKey")
private String appKey;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("endDs")
private String endDs;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("service")
private String service;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("startDs")
private String startDs;
private DescribeDetailStartRequest(Builder builder) {
super(builder);
this.appKey = builder.appKey;
this.endDs = builder.endDs;
this.regId = builder.regId;
this.service = builder.service;
this.startDs = builder.startDs;
}
public static Builder builder() {
return new Builder();
}
public static DescribeDetailStartRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return appKey
*/
public String getAppKey() {
return this.appKey;
}
/**
* @return endDs
*/
public String getEndDs() {
return this.endDs;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return service
*/
public String getService() {
return this.service;
}
/**
* @return startDs
*/
public String getStartDs() {
return this.startDs;
}
public static final class Builder extends Request.Builder<DescribeDetailStartRequest, Builder> {
private String appKey;
private String endDs;
private String regId;
private String service;
private String startDs;
private Builder() {
super();
}
private Builder(DescribeDetailStartRequest request) {
super(request);
this.appKey = request.appKey;
this.endDs = request.endDs;
this.regId = request.regId;
this.service = request.service;
this.startDs = request.startDs;
}
/**
* <p>Application appkey.</p>
*
* <strong>example:</strong>
* <hr>
*/
public Builder appKey(String appKey) {
this.putQueryParameter("appKey", appKey);
this.appKey = appKey;
return this;
}
/**
* <p>End time</p>
* <p>Format yyyymmdd</p>
*
* <strong>example:</strong>
* <p>20250320</p>
*/
public Builder endDs(String endDs) {
this.putQueryParameter("endDs", endDs);
this.endDs = endDs;
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>Called service</p>
*
* <strong>example:</strong>
* <p>service_tender_cee</p>
*/
public Builder service(String service) {
this.putQueryParameter("service", service);
this.service = service;
return this;
}
/**
* <p>Start time</p>
* <p> Format yyyymmdd</p>
*
* <strong>example:</strong>
* <p>20250310</p>
*/
public Builder startDs(String startDs) {
this.putQueryParameter("startDs", startDs);
this.startDs = startDs;
return this;
}
@Override
public DescribeDetailStartRequest build() {
return new DescribeDetailStartRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDetailStartResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDetailStartResponse} extends {@link TeaModel}
*
* <p>DescribeDetailStartResponse</p>
*/
public class DescribeDetailStartResponse 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 DescribeDetailStartResponseBody body;
private DescribeDetailStartResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeDetailStartResponse 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 DescribeDetailStartResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeDetailStartResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeDetailStartResponseBody body);
@Override
DescribeDetailStartResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeDetailStartResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeDetailStartResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeDetailStartResponse 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(DescribeDetailStartResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeDetailStartResponse build() {
return new DescribeDetailStartResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDetailStartResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDetailStartResponseBody} extends {@link TeaModel}
*
* <p>DescribeDetailStartResponseBody</p>
*/
public class DescribeDetailStartResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("httpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private DescribeDetailStartResponseBody(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 DescribeDetailStartResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public Boolean getResultObject() {
return this.resultObject;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String httpStatusCode;
private String message;
private String requestId;
private Boolean resultObject;
private Boolean success;
private Builder() {
}
private Builder(DescribeDetailStartResponseBody 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.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder resultObject(Boolean resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Indicates whether the operation was successful, with true representing success.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeDetailStartResponseBody build() {
return new DescribeDetailStartResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDownloadUrlRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDownloadUrlRequest} extends {@link RequestModel}
*
* <p>DescribeDownloadUrlRequest</p>
*/
public class DescribeDownloadUrlRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("FileType")
private String fileType;
@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("TaskId")
private Long taskId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Type")
private String type;
private DescribeDownloadUrlRequest(Builder builder) {
super(builder);
this.fileType = builder.fileType;
this.lang = builder.lang;
this.regId = builder.regId;
this.taskId = builder.taskId;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static DescribeDownloadUrlRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return fileType
*/
public String getFileType() {
return this.fileType;
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return taskId
*/
public Long getTaskId() {
return this.taskId;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
public static final class Builder extends Request.Builder<DescribeDownloadUrlRequest, Builder> {
private String fileType;
private String lang;
private String regId;
private Long taskId;
private String type;
private Builder() {
super();
}
private Builder(DescribeDownloadUrlRequest request) {
super(request);
this.fileType = request.fileType;
this.lang = request.lang;
this.regId = request.regId;
this.taskId = request.taskId;
this.type = request.type;
}
/**
* <p>File type</p>
*
* <strong>example:</strong>
* <p>CSV</p>
*/
public Builder fileType(String fileType) {
this.putQueryParameter("FileType", fileType);
this.fileType = fileType;
return this;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("RegId", regId);
this.regId = regId;
return this;
}
/**
* <p>Task ID.</p>
*
* <strong>example:</strong>
* <p>18191</p>
*/
public Builder taskId(Long taskId) {
this.putQueryParameter("TaskId", taskId);
this.taskId = taskId;
return this;
}
/**
* <p>Download type</p>
*
* <strong>example:</strong>
* <p>FILE</p>
*/
public Builder type(String type) {
this.putQueryParameter("Type", type);
this.type = type;
return this;
}
@Override
public DescribeDownloadUrlRequest build() {
return new DescribeDownloadUrlRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDownloadUrlResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDownloadUrlResponse} extends {@link TeaModel}
*
* <p>DescribeDownloadUrlResponse</p>
*/
public class DescribeDownloadUrlResponse 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 DescribeDownloadUrlResponseBody body;
private DescribeDownloadUrlResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeDownloadUrlResponse 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 DescribeDownloadUrlResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeDownloadUrlResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeDownloadUrlResponseBody body);
@Override
DescribeDownloadUrlResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeDownloadUrlResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeDownloadUrlResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeDownloadUrlResponse 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(DescribeDownloadUrlResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeDownloadUrlResponse build() {
return new DescribeDownloadUrlResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeDownloadUrlResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeDownloadUrlResponseBody} extends {@link TeaModel}
*
* <p>DescribeDownloadUrlResponseBody</p>
*/
public class DescribeDownloadUrlResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private String resultObject;
private DescribeDownloadUrlResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeDownloadUrlResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public String getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private String resultObject;
private Builder() {
}
private Builder(DescribeDownloadUrlResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder resultObject(String resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeDownloadUrlResponseBody build() {
return new DescribeDownloadUrlResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventBaseInfoByEventCodeRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventBaseInfoByEventCodeRequest} extends {@link RequestModel}
*
* <p>DescribeEventBaseInfoByEventCodeRequest</p>
*/
public class DescribeEventBaseInfoByEventCodeRequest 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("eventCode")
private String eventCode;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeEventBaseInfoByEventCodeRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.createType = builder.createType;
this.eventCode = builder.eventCode;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventBaseInfoByEventCodeRequest 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 eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeEventBaseInfoByEventCodeRequest, Builder> {
private String lang;
private String createType;
private String eventCode;
private String regId;
private Builder() {
super();
}
private Builder(DescribeEventBaseInfoByEventCodeRequest request) {
super(request);
this.lang = request.lang;
this.createType = request.createType;
this.eventCode = request.eventCode;
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>Creation type</p>
*
* <strong>example:</strong>
* <p>NORMAL</p>
*/
public Builder createType(String createType) {
this.putQueryParameter("createType", createType);
this.createType = createType;
return this;
}
/**
* <p>Event code</p>
*
* <strong>example:</strong>
* <p>de_arcehq4370</p>
*/
public Builder eventCode(String eventCode) {
this.putQueryParameter("eventCode", eventCode);
this.eventCode = eventCode;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeEventBaseInfoByEventCodeRequest build() {
return new DescribeEventBaseInfoByEventCodeRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventBaseInfoByEventCodeResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventBaseInfoByEventCodeResponse} extends {@link TeaModel}
*
* <p>DescribeEventBaseInfoByEventCodeResponse</p>
*/
public class DescribeEventBaseInfoByEventCodeResponse 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 DescribeEventBaseInfoByEventCodeResponseBody body;
private DescribeEventBaseInfoByEventCodeResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeEventBaseInfoByEventCodeResponse 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 DescribeEventBaseInfoByEventCodeResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeEventBaseInfoByEventCodeResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeEventBaseInfoByEventCodeResponseBody body);
@Override
DescribeEventBaseInfoByEventCodeResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeEventBaseInfoByEventCodeResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeEventBaseInfoByEventCodeResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeEventBaseInfoByEventCodeResponse 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(DescribeEventBaseInfoByEventCodeResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeEventBaseInfoByEventCodeResponse build() {
return new DescribeEventBaseInfoByEventCodeResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventBaseInfoByEventCodeResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventBaseInfoByEventCodeResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventBaseInfoByEventCodeResponseBody</p>
*/
public class DescribeEventBaseInfoByEventCodeResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
private DescribeEventBaseInfoByEventCodeResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventBaseInfoByEventCodeResponseBody 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(DescribeEventBaseInfoByEventCodeResponseBody 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 DescribeEventBaseInfoByEventCodeResponseBody build() {
return new DescribeEventBaseInfoByEventCodeResponseBody(this);
}
}
/**
*
* {@link DescribeEventBaseInfoByEventCodeResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventBaseInfoByEventCodeResponseBody</p>
*/
public static class InputFields extends TeaModel {
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("fieldCode")
private String fieldCode;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private String fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
private InputFields(Builder builder) {
this.description = builder.description;
this.fieldCode = builder.fieldCode;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.title = builder.title;
}
public static Builder builder() {
return new Builder();
}
public static InputFields create() {
return builder().build();
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return fieldCode
*/
public String getFieldCode() {
return this.fieldCode;
}
/**
* @return fieldRank
*/
public String getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
public static final class Builder {
private String description;
private String fieldCode;
private String fieldRank;
private String fieldSource;
private String fieldType;
private String title;
private Builder() {
}
private Builder(InputFields model) {
this.description = model.description;
this.fieldCode = model.fieldCode;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.title = model.title;
}
/**
* <p>Field description.</p>
*
* <strong>example:</strong>
* <p>描述</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Field code</p>
*
* <strong>example:</strong>
* <p>age</p>
*/
public Builder fieldCode(String fieldCode) {
this.fieldCode = fieldCode;
return this;
}
/**
* <p>Field ranking</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder fieldRank(String fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>Field source.</p>
*
* <strong>example:</strong>
* <p>DEFAULT</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>Field type.</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Field name.</p>
*
* <strong>example:</strong>
* <p>年龄</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
public InputFields build() {
return new InputFields(this);
}
}
}
/**
*
* {@link DescribeEventBaseInfoByEventCodeResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventBaseInfoByEventCodeResponseBody</p>
*/
public static class RuleDetails extends TeaModel {
@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("ruleAuthType")
private String ruleAuthType;
@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;
private RuleDetails(Builder builder) {
this.logicExpression = builder.logicExpression;
this.memo = builder.memo;
this.ruleActions = builder.ruleActions;
this.ruleAuthType = builder.ruleAuthType;
this.ruleExpressions = builder.ruleExpressions;
this.ruleId = builder.ruleId;
this.ruleName = builder.ruleName;
this.ruleStatus = builder.ruleStatus;
}
public static Builder builder() {
return new Builder();
}
public static RuleDetails create() {
return builder().build();
}
/**
* @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 ruleAuthType
*/
public String getRuleAuthType() {
return this.ruleAuthType;
}
/**
* @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;
}
public static final class Builder {
private String logicExpression;
private String memo;
private String ruleActions;
private String ruleAuthType;
private String ruleExpressions;
private String ruleId;
private String ruleName;
private String ruleStatus;
private Builder() {
}
private Builder(RuleDetails model) {
this.logicExpression = model.logicExpression;
this.memo = model.memo;
this.ruleActions = model.ruleActions;
this.ruleAuthType = model.ruleAuthType;
this.ruleExpressions = model.ruleExpressions;
this.ruleId = model.ruleId;
this.ruleName = model.ruleName;
this.ruleStatus = model.ruleStatus;
}
/**
* <p>Policy Execution Logic</p>
*
* <strong>example:</strong>
* <p>3&((1&2&4)</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>[{"inputs":["auto_accselist"],"name":"<strong>addDeTags</strong>","actionType":"TAG","outputType":"const"}]</p>
*/
public Builder ruleActions(String ruleActions) {
this.ruleActions = ruleActions;
return this;
}
/**
* <p>Policy Type</p>
*
* <strong>example:</strong>
* <p>DEFAULT</p>
*/
public Builder ruleAuthType(String ruleAuthType) {
this.ruleAuthType = ruleAuthType;
return this;
}
/**
* <p>Event Expressions.</p>
*
* <strong>example:</strong>
* <p>[{"expressionName":"同一设备同一IP上的注册用户数","itemId":1,"left":{"name":"dK7EXHr490f"},"operatorCode":"gte","operatorName":"大于等于","right":{"fieldValue":"2"}}]</p>
*/
public Builder ruleExpressions(String ruleExpressions) {
this.ruleExpressions = ruleExpressions;
return this;
}
/**
* <p>Policy ID</p>
*
* <strong>example:</strong>
* <p>101544</p>
*/
public Builder ruleId(String ruleId) {
this.ruleId = ruleId;
return this;
}
/**
* <p>Policy Name</p>
*
* <strong>example:</strong>
* <p>手机号MD5命中人脸测试名单</p>
*/
public Builder ruleName(String ruleName) {
this.ruleName = ruleName;
return this;
}
/**
* <p>Policy Status</p>
*
* <strong>example:</strong>
* <p>DRAFT</p>
*/
public Builder ruleStatus(String ruleStatus) {
this.ruleStatus = ruleStatus;
return this;
}
public RuleDetails build() {
return new RuleDetails(this);
}
}
}
/**
*
* {@link DescribeEventBaseInfoByEventCodeResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventBaseInfoByEventCodeResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("bizVersion")
private Integer bizVersion;
@com.aliyun.core.annotation.NameInMap("eventCode")
private String eventCode;
@com.aliyun.core.annotation.NameInMap("eventName")
private String eventName;
@com.aliyun.core.annotation.NameInMap("eventStauts")
private String eventStauts;
@com.aliyun.core.annotation.NameInMap("inputFields")
private java.util.List<InputFields> inputFields;
@com.aliyun.core.annotation.NameInMap("memo")
private String memo;
@com.aliyun.core.annotation.NameInMap("ruleDetails")
private java.util.List<RuleDetails> ruleDetails;
@com.aliyun.core.annotation.NameInMap("templateCode")
private String templateCode;
@com.aliyun.core.annotation.NameInMap("templateName")
private String templateName;
@com.aliyun.core.annotation.NameInMap("templateType")
private String templateType;
private ResultObject(Builder builder) {
this.bizVersion = builder.bizVersion;
this.eventCode = builder.eventCode;
this.eventName = builder.eventName;
this.eventStauts = builder.eventStauts;
this.inputFields = builder.inputFields;
this.memo = builder.memo;
this.ruleDetails = builder.ruleDetails;
this.templateCode = builder.templateCode;
this.templateName = builder.templateName;
this.templateType = builder.templateType;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return bizVersion
*/
public Integer getBizVersion() {
return this.bizVersion;
}
/**
* @return eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return eventName
*/
public String getEventName() {
return this.eventName;
}
/**
* @return eventStauts
*/
public String getEventStauts() {
return this.eventStauts;
}
/**
* @return inputFields
*/
public java.util.List<InputFields> getInputFields() {
return this.inputFields;
}
/**
* @return memo
*/
public String getMemo() {
return this.memo;
}
/**
* @return ruleDetails
*/
public java.util.List<RuleDetails> getRuleDetails() {
return this.ruleDetails;
}
/**
* @return templateCode
*/
public String getTemplateCode() {
return this.templateCode;
}
/**
* @return templateName
*/
public String getTemplateName() {
return this.templateName;
}
/**
* @return templateType
*/
public String getTemplateType() {
return this.templateType;
}
public static final class Builder {
private Integer bizVersion;
private String eventCode;
private String eventName;
private String eventStauts;
private java.util.List<InputFields> inputFields;
private String memo;
private java.util.List<RuleDetails> ruleDetails;
private String templateCode;
private String templateName;
private String templateType;
private Builder() {
}
private Builder(ResultObject model) {
this.bizVersion = model.bizVersion;
this.eventCode = model.eventCode;
this.eventName = model.eventName;
this.eventStauts = model.eventStauts;
this.inputFields = model.inputFields;
this.memo = model.memo;
this.ruleDetails = model.ruleDetails;
this.templateCode = model.templateCode;
this.templateName = model.templateName;
this.templateType = model.templateType;
}
/**
* <p>Business version number</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder bizVersion(Integer 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>Event status.</p>
*
* <strong>example:</strong>
* <p>ONLINE</p>
*/
public Builder eventStauts(String eventStauts) {
this.eventStauts = eventStauts;
return this;
}
/**
* <p>Field list.</p>
*/
public Builder inputFields(java.util.List<InputFields> inputFields) {
this.inputFields = inputFields;
return this;
}
/**
* <p>Memo.</p>
*
* <strong>example:</strong>
* <p>备注</p>
*/
public Builder memo(String memo) {
this.memo = memo;
return this;
}
/**
* <p>Policy Information</p>
*/
public Builder ruleDetails(java.util.List<RuleDetails> ruleDetails) {
this.ruleDetails = ruleDetails;
return this;
}
/**
* <p>Operation template code</p>
*
* <strong>example:</strong>
* <p>register</p>
*/
public Builder templateCode(String templateCode) {
this.templateCode = templateCode;
return this;
}
/**
* <p>Template name</p>
*
* <strong>example:</strong>
* <p>注册事件模板</p>
*/
public Builder templateName(String templateName) {
this.templateName = templateName;
return this;
}
/**
* <p>Template type.</p>
*
* <strong>example:</strong>
* <p>TEMPLATE</p>
*/
public Builder templateType(String templateType) {
this.templateType = templateType;
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/DescribeEventCountRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventCountRequest} extends {@link RequestModel}
*
* <p>DescribeEventCountRequest</p>
*/
public class DescribeEventCountRequest 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 DescribeEventCountRequest(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 DescribeEventCountRequest 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<DescribeEventCountRequest, Builder> {
private String lang;
private String createType;
private String regId;
private Builder() {
super();
}
private Builder(DescribeEventCountRequest 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, 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>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 DescribeEventCountRequest build() {
return new DescribeEventCountRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventCountResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventCountResponse} extends {@link TeaModel}
*
* <p>DescribeEventCountResponse</p>
*/
public class DescribeEventCountResponse 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 DescribeEventCountResponseBody body;
private DescribeEventCountResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeEventCountResponse 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 DescribeEventCountResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeEventCountResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeEventCountResponseBody body);
@Override
DescribeEventCountResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeEventCountResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeEventCountResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeEventCountResponse 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(DescribeEventCountResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeEventCountResponse build() {
return new DescribeEventCountResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventCountResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventCountResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventCountResponseBody</p>
*/
public class DescribeEventCountResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("httpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private DescribeEventCountResponseBody(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 DescribeEventCountResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String httpStatusCode;
private String message;
private String requestId;
private ResultObject resultObject;
private Boolean success;
private Builder() {
}
private Builder(DescribeEventCountResponseBody 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</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Whether the request was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeEventCountResponseBody build() {
return new DescribeEventCountResponseBody(this);
}
}
/**
*
* {@link DescribeEventCountResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventCountResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("limit")
private Boolean limit;
@com.aliyun.core.annotation.NameInMap("maxTotalItem")
private Integer maxTotalItem;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Integer totalItem;
private ResultObject(Builder builder) {
this.limit = builder.limit;
this.maxTotalItem = builder.maxTotalItem;
this.totalItem = builder.totalItem;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return limit
*/
public Boolean getLimit() {
return this.limit;
}
/**
* @return maxTotalItem
*/
public Integer getMaxTotalItem() {
return this.maxTotalItem;
}
/**
* @return totalItem
*/
public Integer getTotalItem() {
return this.totalItem;
}
public static final class Builder {
private Boolean limit;
private Integer maxTotalItem;
private Integer totalItem;
private Builder() {
}
private Builder(ResultObject model) {
this.limit = model.limit;
this.maxTotalItem = model.maxTotalItem;
this.totalItem = model.totalItem;
}
/**
* <p>Whether it exceeds the maximum number</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder limit(Boolean limit) {
this.limit = limit;
return this;
}
/**
* <p>Maximum creation count</p>
*
* <strong>example:</strong>
* <p>100</p>
*/
public Builder maxTotalItem(Integer maxTotalItem) {
this.maxTotalItem = maxTotalItem;
return this;
}
/**
* <p>Total count</p>
*
* <strong>example:</strong>
* <p>101</p>
*/
public Builder totalItem(Integer totalItem) {
this.totalItem = totalItem;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventDetailByRequestIdRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventDetailByRequestIdRequest} extends {@link RequestModel}
*
* <p>DescribeEventDetailByRequestIdRequest</p>
*/
public class DescribeEventDetailByRequestIdRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventCode")
private String eventCode;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventTime")
private Long eventTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
@com.aliyun.core.annotation.Validation(required = true)
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("sRequestId")
@com.aliyun.core.annotation.Validation(required = true)
private String sRequestId;
private DescribeEventDetailByRequestIdRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.eventCode = builder.eventCode;
this.eventTime = builder.eventTime;
this.regId = builder.regId;
this.sRequestId = builder.sRequestId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventDetailByRequestIdRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return eventTime
*/
public Long getEventTime() {
return this.eventTime;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return sRequestId
*/
public String getSRequestId() {
return this.sRequestId;
}
public static final class Builder extends Request.Builder<DescribeEventDetailByRequestIdRequest, Builder> {
private String lang;
private String eventCode;
private Long eventTime;
private String regId;
private String sRequestId;
private Builder() {
super();
}
private Builder(DescribeEventDetailByRequestIdRequest request) {
super(request);
this.lang = request.lang;
this.eventCode = request.eventCode;
this.eventTime = request.eventTime;
this.regId = request.regId;
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>Event code</p>
*
* <strong>example:</strong>
* <p>de_azywkh7523</p>
*/
public Builder eventCode(String eventCode) {
this.putQueryParameter("eventCode", eventCode);
this.eventCode = eventCode;
return this;
}
/**
* <p>Event execution time</p>
*
* <strong>example:</strong>
* <p>1752571330000</p>
*/
public Builder eventTime(Long eventTime) {
this.putQueryParameter("eventTime", eventTime);
this.eventTime = eventTime;
return this;
}
/**
* <p>Region code</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Request ID.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>BD6B08EC-1B44-5378-8838-C76A36415C55</p>
*/
public Builder sRequestId(String sRequestId) {
this.putQueryParameter("sRequestId", sRequestId);
this.sRequestId = sRequestId;
return this;
}
@Override
public DescribeEventDetailByRequestIdRequest build() {
return new DescribeEventDetailByRequestIdRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventDetailByRequestIdResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventDetailByRequestIdResponse} extends {@link TeaModel}
*
* <p>DescribeEventDetailByRequestIdResponse</p>
*/
public class DescribeEventDetailByRequestIdResponse 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 DescribeEventDetailByRequestIdResponseBody body;
private DescribeEventDetailByRequestIdResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeEventDetailByRequestIdResponse 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 DescribeEventDetailByRequestIdResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeEventDetailByRequestIdResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeEventDetailByRequestIdResponseBody body);
@Override
DescribeEventDetailByRequestIdResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeEventDetailByRequestIdResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeEventDetailByRequestIdResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeEventDetailByRequestIdResponse 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(DescribeEventDetailByRequestIdResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeEventDetailByRequestIdResponse build() {
return new DescribeEventDetailByRequestIdResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventDetailByRequestIdResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventDetailByRequestIdResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventDetailByRequestIdResponseBody</p>
*/
public class DescribeEventDetailByRequestIdResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
private DescribeEventDetailByRequestIdResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventDetailByRequestIdResponseBody 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(DescribeEventDetailByRequestIdResponseBody 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 DescribeEventDetailByRequestIdResponseBody build() {
return new DescribeEventDetailByRequestIdResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventLogDetailRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventLogDetailRequest} extends {@link RequestModel}
*
* <p>DescribeEventLogDetailRequest</p>
*/
public class DescribeEventLogDetailRequest 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("reqIdByLog")
@com.aliyun.core.annotation.Validation(required = true)
private String reqIdByLog;
private DescribeEventLogDetailRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
this.reqIdByLog = builder.reqIdByLog;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventLogDetailRequest 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 reqIdByLog
*/
public String getReqIdByLog() {
return this.reqIdByLog;
}
public static final class Builder extends Request.Builder<DescribeEventLogDetailRequest, Builder> {
private String lang;
private String regId;
private String reqIdByLog;
private Builder() {
super();
}
private Builder(DescribeEventLogDetailRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
this.reqIdByLog = request.reqIdByLog;
}
/**
* <p>Set the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Log details.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>BD6B08EC-1B44-5378-8838-C76A36415C55</p>
*/
public Builder reqIdByLog(String reqIdByLog) {
this.putQueryParameter("reqIdByLog", reqIdByLog);
this.reqIdByLog = reqIdByLog;
return this;
}
@Override
public DescribeEventLogDetailRequest build() {
return new DescribeEventLogDetailRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventLogDetailResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventLogDetailResponse} extends {@link TeaModel}
*
* <p>DescribeEventLogDetailResponse</p>
*/
public class DescribeEventLogDetailResponse 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 DescribeEventLogDetailResponseBody body;
private DescribeEventLogDetailResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeEventLogDetailResponse 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 DescribeEventLogDetailResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeEventLogDetailResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeEventLogDetailResponseBody body);
@Override
DescribeEventLogDetailResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeEventLogDetailResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeEventLogDetailResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeEventLogDetailResponse 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(DescribeEventLogDetailResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeEventLogDetailResponse build() {
return new DescribeEventLogDetailResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventLogDetailResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventLogDetailResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventLogDetailResponseBody</p>
*/
public class DescribeEventLogDetailResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
private DescribeEventLogDetailResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventLogDetailResponseBody 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(DescribeEventLogDetailResponseBody 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 DescribeEventLogDetailResponseBody build() {
return new DescribeEventLogDetailResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventLogPageRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventLogPageRequest} extends {@link RequestModel}
*
* <p>DescribeEventLogPageRequest</p>
*/
public class DescribeEventLogPageRequest 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("accountIdPRP")
private String accountIdPRP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("beginTime")
private Long beginTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("condition1AL")
private String condition1AL;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("condition2AL")
private String condition2AL;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("condition3AL")
private String condition3AL;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("currentPage")
private Integer currentPage;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("deviceTypeLRP")
private String deviceTypeLRP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("emailPRP")
private String emailPRP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("endTime")
private Long endTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("failReasonLRP")
private String failReasonLRP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("ipPRP")
private String ipPRP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("loginResultARP")
private String loginResultARP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("loginTypeLRP")
private String loginTypeLRP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("macPRP")
private String macPRP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("mobilePRP")
private String mobilePRP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("nickNamePRP")
private String nickNamePRP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("operateSourceLRP")
private String operateSourceLRP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("pageSize")
private Integer pageSize;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("referPRP")
private String referPRP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("registerIpPRP")
private String registerIpPRP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("reqIdPBS")
private String reqIdPBS;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("scoreEBS")
private Integer scoreEBS;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("scoreSBS")
private Integer scoreSBS;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("serviceABS")
private String serviceABS;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("tagsLBS")
private String tagsLBS;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("umidPDI")
private String umidPDI;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("userAgentPRP")
private String userAgentPRP;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("userNameTypeLRP")
private String userNameTypeLRP;
private DescribeEventLogPageRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.accountIdPRP = builder.accountIdPRP;
this.beginTime = builder.beginTime;
this.condition1AL = builder.condition1AL;
this.condition2AL = builder.condition2AL;
this.condition3AL = builder.condition3AL;
this.currentPage = builder.currentPage;
this.deviceTypeLRP = builder.deviceTypeLRP;
this.emailPRP = builder.emailPRP;
this.endTime = builder.endTime;
this.failReasonLRP = builder.failReasonLRP;
this.ipPRP = builder.ipPRP;
this.loginResultARP = builder.loginResultARP;
this.loginTypeLRP = builder.loginTypeLRP;
this.macPRP = builder.macPRP;
this.mobilePRP = builder.mobilePRP;
this.nickNamePRP = builder.nickNamePRP;
this.operateSourceLRP = builder.operateSourceLRP;
this.pageSize = builder.pageSize;
this.referPRP = builder.referPRP;
this.regId = builder.regId;
this.registerIpPRP = builder.registerIpPRP;
this.reqIdPBS = builder.reqIdPBS;
this.scoreEBS = builder.scoreEBS;
this.scoreSBS = builder.scoreSBS;
this.serviceABS = builder.serviceABS;
this.tagsLBS = builder.tagsLBS;
this.umidPDI = builder.umidPDI;
this.userAgentPRP = builder.userAgentPRP;
this.userNameTypeLRP = builder.userNameTypeLRP;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventLogPageRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return accountIdPRP
*/
public String getAccountIdPRP() {
return this.accountIdPRP;
}
/**
* @return beginTime
*/
public Long getBeginTime() {
return this.beginTime;
}
/**
* @return condition1AL
*/
public String getCondition1AL() {
return this.condition1AL;
}
/**
* @return condition2AL
*/
public String getCondition2AL() {
return this.condition2AL;
}
/**
* @return condition3AL
*/
public String getCondition3AL() {
return this.condition3AL;
}
/**
* @return currentPage
*/
public Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return deviceTypeLRP
*/
public String getDeviceTypeLRP() {
return this.deviceTypeLRP;
}
/**
* @return emailPRP
*/
public String getEmailPRP() {
return this.emailPRP;
}
/**
* @return endTime
*/
public Long getEndTime() {
return this.endTime;
}
/**
* @return failReasonLRP
*/
public String getFailReasonLRP() {
return this.failReasonLRP;
}
/**
* @return ipPRP
*/
public String getIpPRP() {
return this.ipPRP;
}
/**
* @return loginResultARP
*/
public String getLoginResultARP() {
return this.loginResultARP;
}
/**
* @return loginTypeLRP
*/
public String getLoginTypeLRP() {
return this.loginTypeLRP;
}
/**
* @return macPRP
*/
public String getMacPRP() {
return this.macPRP;
}
/**
* @return mobilePRP
*/
public String getMobilePRP() {
return this.mobilePRP;
}
/**
* @return nickNamePRP
*/
public String getNickNamePRP() {
return this.nickNamePRP;
}
/**
* @return operateSourceLRP
*/
public String getOperateSourceLRP() {
return this.operateSourceLRP;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return referPRP
*/
public String getReferPRP() {
return this.referPRP;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return registerIpPRP
*/
public String getRegisterIpPRP() {
return this.registerIpPRP;
}
/**
* @return reqIdPBS
*/
public String getReqIdPBS() {
return this.reqIdPBS;
}
/**
* @return scoreEBS
*/
public Integer getScoreEBS() {
return this.scoreEBS;
}
/**
* @return scoreSBS
*/
public Integer getScoreSBS() {
return this.scoreSBS;
}
/**
* @return serviceABS
*/
public String getServiceABS() {
return this.serviceABS;
}
/**
* @return tagsLBS
*/
public String getTagsLBS() {
return this.tagsLBS;
}
/**
* @return umidPDI
*/
public String getUmidPDI() {
return this.umidPDI;
}
/**
* @return userAgentPRP
*/
public String getUserAgentPRP() {
return this.userAgentPRP;
}
/**
* @return userNameTypeLRP
*/
public String getUserNameTypeLRP() {
return this.userNameTypeLRP;
}
public static final class Builder extends Request.Builder<DescribeEventLogPageRequest, Builder> {
private String lang;
private String accountIdPRP;
private Long beginTime;
private String condition1AL;
private String condition2AL;
private String condition3AL;
private Integer currentPage;
private String deviceTypeLRP;
private String emailPRP;
private Long endTime;
private String failReasonLRP;
private String ipPRP;
private String loginResultARP;
private String loginTypeLRP;
private String macPRP;
private String mobilePRP;
private String nickNamePRP;
private String operateSourceLRP;
private Integer pageSize;
private String referPRP;
private String regId;
private String registerIpPRP;
private String reqIdPBS;
private Integer scoreEBS;
private Integer scoreSBS;
private String serviceABS;
private String tagsLBS;
private String umidPDI;
private String userAgentPRP;
private String userNameTypeLRP;
private Builder() {
super();
}
private Builder(DescribeEventLogPageRequest request) {
super(request);
this.lang = request.lang;
this.accountIdPRP = request.accountIdPRP;
this.beginTime = request.beginTime;
this.condition1AL = request.condition1AL;
this.condition2AL = request.condition2AL;
this.condition3AL = request.condition3AL;
this.currentPage = request.currentPage;
this.deviceTypeLRP = request.deviceTypeLRP;
this.emailPRP = request.emailPRP;
this.endTime = request.endTime;
this.failReasonLRP = request.failReasonLRP;
this.ipPRP = request.ipPRP;
this.loginResultARP = request.loginResultARP;
this.loginTypeLRP = request.loginTypeLRP;
this.macPRP = request.macPRP;
this.mobilePRP = request.mobilePRP;
this.nickNamePRP = request.nickNamePRP;
this.operateSourceLRP = request.operateSourceLRP;
this.pageSize = request.pageSize;
this.referPRP = request.referPRP;
this.regId = request.regId;
this.registerIpPRP = request.registerIpPRP;
this.reqIdPBS = request.reqIdPBS;
this.scoreEBS = request.scoreEBS;
this.scoreSBS = request.scoreSBS;
this.serviceABS = request.serviceABS;
this.tagsLBS = request.tagsLBS;
this.umidPDI = request.umidPDI;
this.userAgentPRP = request.userAgentPRP;
this.userNameTypeLRP = request.userNameTypeLRP;
}
/**
* <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>Account ID (request_param.accountId), up to 50 characters, supports “*” and “?” wildcards.</p>
*
* <strong>example:</strong>
* <p>180650758xxxxxxx</p>
*/
public Builder accountIdPRP(String accountIdPRP) {
this.putQueryParameter("accountIdPRP", accountIdPRP);
this.accountIdPRP = accountIdPRP;
return this;
}
/**
* <p>Start timestamp of the log. Unit: milliseconds.</p>
*
* <strong>example:</strong>
* <p>1737101348000</p>
*/
public Builder beginTime(Long beginTime) {
this.putQueryParameter("beginTime", beginTime);
this.beginTime = beginTime;
return this;
}
/**
* <p>Full-text match 1, cannot exceed 30 characters.</p>
*
* <strong>example:</strong>
* <p>rm0102</p>
*/
public Builder condition1AL(String condition1AL) {
this.putQueryParameter("condition1AL", condition1AL);
this.condition1AL = condition1AL;
return this;
}
/**
* <p>Full-text match 2, cannot exceed 30 characters.</p>
*
* <strong>example:</strong>
* <p>rm0102</p>
*/
public Builder condition2AL(String condition2AL) {
this.putQueryParameter("condition2AL", condition2AL);
this.condition2AL = condition2AL;
return this;
}
/**
* <p>Full-text match 3, cannot exceed 30 characters.</p>
*
* <strong>example:</strong>
* <p>rm0102</p>
*/
public Builder condition3AL(String condition3AL) {
this.putQueryParameter("condition3AL", condition3AL);
this.condition3AL = condition3AL;
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>Device type (request_param.deviceType), examples: 1. PC, 2. MOBILE.</p>
*
* <strong>example:</strong>
* <p>PC</p>
*/
public Builder deviceTypeLRP(String deviceTypeLRP) {
this.putQueryParameter("deviceTypeLRP", deviceTypeLRP);
this.deviceTypeLRP = deviceTypeLRP;
return this;
}
/**
* <p>Email (request_param.email), up to 100 characters, supports “*” and “?” wildcards.</p>
*
* <strong>example:</strong>
* <p><a href="mailto:xxxx@123.com">xxxx@123.com</a></p>
*/
public Builder emailPRP(String emailPRP) {
this.putQueryParameter("emailPRP", emailPRP);
this.emailPRP = emailPRP;
return this;
}
/**
* <p>End time, accurate to milliseconds (ms).</p>
*
* <strong>example:</strong>
* <p>1746669075000</p>
*/
public Builder endTime(Long endTime) {
this.putQueryParameter("endTime", endTime);
this.endTime = endTime;
return this;
}
/**
* <p>Login failure reason (-request_param.failReason).</p>
*
* <strong>example:</strong>
* <p>wrongPassword</p>
*/
public Builder failReasonLRP(String failReasonLRP) {
this.putQueryParameter("failReasonLRP", failReasonLRP);
this.failReasonLRP = failReasonLRP;
return this;
}
/**
* <p>IP (request_param.ip), up to 20 characters, supports “*” and “?” wildcards.</p>
*
* <strong>example:</strong>
* <p>168.168.168.168</p>
*/
public Builder ipPRP(String ipPRP) {
this.putQueryParameter("ipPRP", ipPRP);
this.ipPRP = ipPRP;
return this;
}
/**
* <p>Login success indicator (request_param.loginResult).</p>
*
* <strong>example:</strong>
* <p>SUCCESS</p>
*/
public Builder loginResultARP(String loginResultARP) {
this.putQueryParameter("loginResultARP", loginResultARP);
this.loginResultARP = loginResultARP;
return this;
}
/**
* <p>Login verification method (-request_param.loginType).</p>
*
* <strong>example:</strong>
* <p>PASSWORD</p>
*/
public Builder loginTypeLRP(String loginTypeLRP) {
this.putQueryParameter("loginTypeLRP", loginTypeLRP);
this.loginTypeLRP = loginTypeLRP;
return this;
}
/**
* <p>Device MAC address (-request_param.mac), up to 30 characters, supports “*” and “?” wildcards.</p>
*
* <strong>example:</strong>
* <p>00-1C-F0-1D-A7-81</p>
*/
public Builder macPRP(String macPRP) {
this.putQueryParameter("macPRP", macPRP);
this.macPRP = macPRP;
return this;
}
/**
* <p>Phone number (supports MD5 request_param.mobile/request_param.mobileMd5), up to 30 characters, supports “*” and “?” wildcards, searchable by mobile and mobileMd5 fields.</p>
*
* <strong>example:</strong>
* <p>17600000000</p>
*/
public Builder mobilePRP(String mobilePRP) {
this.putQueryParameter("mobilePRP", mobilePRP);
this.mobilePRP = mobilePRP;
return this;
}
/**
* <p>Account nickname (request_param.nickName), up to 50 characters, supports “*” and “?” wildcards.</p>
*
* <strong>example:</strong>
* <p>测试xx</p>
*/
public Builder nickNamePRP(String nickNamePRP) {
this.putQueryParameter("nickNamePRP", nickNamePRP);
this.nickNamePRP = nickNamePRP;
return this;
}
/**
* <p>Operation source (request_param.operateSource), examples: 1. PC, 2. H5, 3. App.</p>
*
* <strong>example:</strong>
* <p>PC</p>
*/
public Builder operateSourceLRP(String operateSourceLRP) {
this.putQueryParameter("operateSourceLRP", operateSourceLRP);
this.operateSourceLRP = operateSourceLRP;
return this;
}
/**
* <p>Number of items per page, default value is 10.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("pageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>Referer (-request_param.refer), up to 50 characters, supports “*” and “?” wildcards.</p>
*
* <strong>example:</strong>
* <p>refer</p>
*/
public Builder referPRP(String referPRP) {
this.putQueryParameter("referPRP", referPRP);
this.referPRP = referPRP;
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>Account registration IP (request_param.registerIp), up to 20 characters, supports “*” and “?” wildcards.</p>
*
* <strong>example:</strong>
* <p>168.168.168.168</p>
*/
public Builder registerIpPRP(String registerIpPRP) {
this.putQueryParameter("registerIpPRP", registerIpPRP);
this.registerIpPRP = registerIpPRP;
return this;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>BD6B08EC-1B44-5378-8838-C76A36415C55</p>
*/
public Builder reqIdPBS(String reqIdPBS) {
this.putQueryParameter("reqIdPBS", reqIdPBS);
this.reqIdPBS = reqIdPBS;
return this;
}
/**
* <p>End value of the score range (score), only non-negative integers are allowed, and the right interval must be greater than the left interval, with both intervals being closed.</p>
*
* <strong>example:</strong>
* <p>2</p>
*/
public Builder scoreEBS(Integer scoreEBS) {
this.putQueryParameter("scoreEBS", scoreEBS);
this.scoreEBS = scoreEBS;
return this;
}
/**
* <p>Starting value of the score range (score), only non-negative integers are allowed, the right interval must be greater than the left interval, both intervals are inclusive.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder scoreSBS(Integer scoreSBS) {
this.putQueryParameter("scoreSBS", scoreSBS);
this.scoreSBS = scoreSBS;
return this;
}
/**
* <p>Event name (instance_id).</p>
*
* <strong>example:</strong>
* <p>de_afghcf6411</p>
*/
public Builder serviceABS(String serviceABS) {
this.putQueryParameter("serviceABS", serviceABS);
this.serviceABS = serviceABS;
return this;
}
/**
* <p>Risk tags (tags), data source DescribeTagsList.</p>
*
* <strong>example:</strong>
* <p>rg0001</p>
*/
public Builder tagsLBS(String tagsLBS) {
this.putQueryParameter("tagsLBS", tagsLBS);
this.tagsLBS = tagsLBS;
return this;
}
/**
* <p>Device ID (device_info.umid).</p>
*
* <strong>example:</strong>
* <p>设备ID</p>
*/
public Builder umidPDI(String umidPDI) {
this.putQueryParameter("umidPDI", umidPDI);
this.umidPDI = umidPDI;
return this;
}
/**
* <p>User agent (-request_param.userAgent), up to 50 characters, supports “*” and “?” wildcards.</p>
*
* <strong>example:</strong>
* <p>00-1C-F0-1D-A7-81</p>
*/
public Builder userAgentPRP(String userAgentPRP) {
this.putQueryParameter("userAgentPRP", userAgentPRP);
this.userAgentPRP = userAgentPRP;
return this;
}
/**
* <p>Username type, login scenario (-request_param.userNameType).</p>
*
* <strong>example:</strong>
* <p>type</p>
*/
public Builder userNameTypeLRP(String userNameTypeLRP) {
this.putQueryParameter("userNameTypeLRP", userNameTypeLRP);
this.userNameTypeLRP = userNameTypeLRP;
return this;
}
@Override
public DescribeEventLogPageRequest build() {
return new DescribeEventLogPageRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventLogPageResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventLogPageResponse} extends {@link TeaModel}
*
* <p>DescribeEventLogPageResponse</p>
*/
public class DescribeEventLogPageResponse 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 DescribeEventLogPageResponseBody body;
private DescribeEventLogPageResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeEventLogPageResponse 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 DescribeEventLogPageResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeEventLogPageResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeEventLogPageResponseBody body);
@Override
DescribeEventLogPageResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeEventLogPageResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeEventLogPageResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeEventLogPageResponse 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(DescribeEventLogPageResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeEventLogPageResponse build() {
return new DescribeEventLogPageResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventLogPageResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventLogPageResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventLogPageResponseBody</p>
*/
public class DescribeEventLogPageResponseBody 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 DescribeEventLogPageResponseBody(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 DescribeEventLogPageResponseBody 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(DescribeEventLogPageResponseBody 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>9</p>
*/
public Builder totalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public DescribeEventLogPageResponseBody build() {
return new DescribeEventLogPageResponseBody(this);
}
}
/**
*
* {@link DescribeEventLogPageResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventLogPageResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("accountId")
private String accountId;
@com.aliyun.core.annotation.NameInMap("email")
private String email;
@com.aliyun.core.annotation.NameInMap("ip")
private String ip;
@com.aliyun.core.annotation.NameInMap("mobile")
private String mobile;
@com.aliyun.core.annotation.NameInMap("nickName")
private String nickName;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("score")
private String score;
@com.aliyun.core.annotation.NameInMap("service")
private String service;
@com.aliyun.core.annotation.NameInMap("tags")
private String tags;
@com.aliyun.core.annotation.NameInMap("timestamp")
private String timestamp;
@com.aliyun.core.annotation.NameInMap("umid")
private String umid;
private ResultObject(Builder builder) {
this.accountId = builder.accountId;
this.email = builder.email;
this.ip = builder.ip;
this.mobile = builder.mobile;
this.nickName = builder.nickName;
this.requestId = builder.requestId;
this.score = builder.score;
this.service = builder.service;
this.tags = builder.tags;
this.timestamp = builder.timestamp;
this.umid = builder.umid;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return accountId
*/
public String getAccountId() {
return this.accountId;
}
/**
* @return email
*/
public String getEmail() {
return this.email;
}
/**
* @return ip
*/
public String getIp() {
return this.ip;
}
/**
* @return mobile
*/
public String getMobile() {
return this.mobile;
}
/**
* @return nickName
*/
public String getNickName() {
return this.nickName;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return score
*/
public String getScore() {
return this.score;
}
/**
* @return service
*/
public String getService() {
return this.service;
}
/**
* @return tags
*/
public String getTags() {
return this.tags;
}
/**
* @return timestamp
*/
public String getTimestamp() {
return this.timestamp;
}
/**
* @return umid
*/
public String getUmid() {
return this.umid;
}
public static final class Builder {
private String accountId;
private String email;
private String ip;
private String mobile;
private String nickName;
private String requestId;
private String score;
private String service;
private String tags;
private String timestamp;
private String umid;
private Builder() {
}
private Builder(ResultObject model) {
this.accountId = model.accountId;
this.email = model.email;
this.ip = model.ip;
this.mobile = model.mobile;
this.nickName = model.nickName;
this.requestId = model.requestId;
this.score = model.score;
this.service = model.service;
this.tags = model.tags;
this.timestamp = model.timestamp;
this.umid = model.umid;
}
/**
* <p>Account ID.</p>
*
* <strong>example:</strong>
* <p>1631801314885832</p>
*/
public Builder accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* <p>Email.</p>
*
* <strong>example:</strong>
* <p><a href="mailto:xxxx@123.com">xxxx@123.com</a></p>
*/
public Builder email(String email) {
this.email = email;
return this;
}
/**
* <p>IP address.</p>
*
* <strong>example:</strong>
* <p>10.200.5.100</p>
*/
public Builder ip(String ip) {
this.ip = ip;
return this;
}
/**
* <p>Mobile phone number.</p>
*
* <strong>example:</strong>
* <p>13817606333</p>
*/
public Builder mobile(String mobile) {
this.mobile = mobile;
return this;
}
/**
* <p>Nickname.</p>
*
* <strong>example:</strong>
* <p>昵称</p>
*/
public Builder nickName(String nickName) {
this.nickName = nickName;
return this;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>546F8063-0104-5271-9EB7-56FB3F375BAD</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Score.</p>
*
* <strong>example:</strong>
* <p>10.0</p>
*/
public Builder score(String score) {
this.score = score;
return this;
}
/**
* <p>Event name.</p>
*
* <strong>example:</strong>
* <p>注册事件</p>
*/
public Builder service(String service) {
this.service = service;
return this;
}
/**
* <p>Tags.</p>
*
* <strong>example:</strong>
* <p>rm0102</p>
*/
public Builder tags(String tags) {
this.tags = tags;
return this;
}
/**
* <p>Transaction time.</p>
*
* <strong>example:</strong>
* <p>1737101348000</p>
*/
public Builder timestamp(String timestamp) {
this.timestamp = timestamp;
return this;
}
/**
* <p>Device ID.</p>
*
* <strong>example:</strong>
* <p>4239</p>
*/
public Builder umid(String umid) {
this.umid = umid;
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/DescribeEventPageListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventPageListRequest} extends {@link RequestModel}
*
* <p>DescribeEventPageListRequest</p>
*/
public class DescribeEventPageListRequest 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 Integer 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("eventName")
private String eventName;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventStatus")
private String eventStatus;
@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 DescribeEventPageListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.createType = builder.createType;
this.currentPage = builder.currentPage;
this.eventCode = builder.eventCode;
this.eventName = builder.eventName;
this.eventStatus = builder.eventStatus;
this.pageSize = builder.pageSize;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventPageListRequest 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 Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return eventName
*/
public String getEventName() {
return this.eventName;
}
/**
* @return eventStatus
*/
public String getEventStatus() {
return this.eventStatus;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeEventPageListRequest, Builder> {
private String lang;
private String createType;
private Integer currentPage;
private String eventCode;
private String eventName;
private String eventStatus;
private Integer pageSize;
private String regId;
private Builder() {
super();
}
private Builder(DescribeEventPageListRequest request) {
super(request);
this.lang = request.lang;
this.createType = request.createType;
this.currentPage = request.currentPage;
this.eventCode = request.eventCode;
this.eventName = request.eventName;
this.eventStatus = request.eventStatus;
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>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(Integer currentPage) {
this.putQueryParameter("currentPage", currentPage);
this.currentPage = currentPage;
return this;
}
/**
* <p>Event code</p>
*
* <strong>example:</strong>
* <p>de_aikqxy3122</p>
*/
public Builder eventCode(String eventCode) {
this.putQueryParameter("eventCode", eventCode);
this.eventCode = eventCode;
return this;
}
/**
* <p>Event name.</p>
*
* <strong>example:</strong>
* <p>注册风险旁路</p>
*/
public Builder eventName(String eventName) {
this.putQueryParameter("eventName", eventName);
this.eventName = eventName;
return this;
}
/**
* <p>Event status.</p>
*
* <strong>example:</strong>
* <p>ONLINE</p>
*/
public Builder eventStatus(String eventStatus) {
this.putQueryParameter("eventStatus", eventStatus);
this.eventStatus = eventStatus;
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 DescribeEventPageListRequest build() {
return new DescribeEventPageListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventPageListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventPageListResponse} extends {@link TeaModel}
*
* <p>DescribeEventPageListResponse</p>
*/
public class DescribeEventPageListResponse 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 DescribeEventPageListResponseBody body;
private DescribeEventPageListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeEventPageListResponse 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 DescribeEventPageListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeEventPageListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeEventPageListResponseBody body);
@Override
DescribeEventPageListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeEventPageListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeEventPageListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeEventPageListResponse 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(DescribeEventPageListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeEventPageListResponse build() {
return new DescribeEventPageListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventPageListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventPageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventPageListResponseBody</p>
*/
public class DescribeEventPageListResponseBody 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 DescribeEventPageListResponseBody(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 DescribeEventPageListResponseBody 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(DescribeEventPageListResponseBody model) {
this.requestId = model.requestId;
this.currentPage = model.currentPage;
this.pageSize = model.pageSize;
this.resultObject = model.resultObject;
this.totalItem = model.totalItem;
this.totalPage = model.totalPage;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, with a default value of 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Total number of items</p>
*
* <strong>example:</strong>
* <p>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 DescribeEventPageListResponseBody build() {
return new DescribeEventPageListResponseBody(this);
}
}
/**
*
* {@link DescribeEventPageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventPageListResponseBody</p>
*/
public static class Children extends TeaModel {
@com.aliyun.core.annotation.NameInMap("eventCode")
private String eventCode;
@com.aliyun.core.annotation.NameInMap("eventName")
private String eventName;
@com.aliyun.core.annotation.NameInMap("eventStatus")
private String eventStatus;
@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("ruleCount")
private Long ruleCount;
private Children(Builder builder) {
this.eventCode = builder.eventCode;
this.eventName = builder.eventName;
this.eventStatus = builder.eventStatus;
this.eventType = builder.eventType;
this.gmtCreate = builder.gmtCreate;
this.gmtModified = builder.gmtModified;
this.id = builder.id;
this.ruleCount = builder.ruleCount;
}
public static Builder builder() {
return new Builder();
}
public static Children create() {
return builder().build();
}
/**
* @return eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return eventName
*/
public String getEventName() {
return this.eventName;
}
/**
* @return eventStatus
*/
public String getEventStatus() {
return this.eventStatus;
}
/**
* @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 ruleCount
*/
public Long getRuleCount() {
return this.ruleCount;
}
public static final class Builder {
private String eventCode;
private String eventName;
private String eventStatus;
private String eventType;
private Long gmtCreate;
private Long gmtModified;
private Long id;
private Long ruleCount;
private Builder() {
}
private Builder(Children model) {
this.eventCode = model.eventCode;
this.eventName = model.eventName;
this.eventStatus = model.eventStatus;
this.eventType = model.eventType;
this.gmtCreate = model.gmtCreate;
this.gmtModified = model.gmtModified;
this.id = model.id;
this.ruleCount = model.ruleCount;
}
/**
* <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 status.</p>
*
* <strong>example:</strong>
* <p>ONLINE</p>
*/
public Builder eventStatus(String eventStatus) {
this.eventStatus = eventStatus;
return this;
}
/**
* <p>Event type.</p>
*
* <strong>example:</strong>
* <p>BYPASS</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>1621578648000</p>
*/
public Builder gmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* <p>Primary key ID</p>
*
* <strong>example:</strong>
* <p>334</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Total number of rules.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder ruleCount(Long ruleCount) {
this.ruleCount = ruleCount;
return this;
}
public Children build() {
return new Children(this);
}
}
}
/**
*
* {@link DescribeEventPageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventPageListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("children")
private java.util.List<Children> children;
@com.aliyun.core.annotation.NameInMap("eventCode")
private String eventCode;
@com.aliyun.core.annotation.NameInMap("eventName")
private String eventName;
@com.aliyun.core.annotation.NameInMap("eventStatus")
private String eventStatus;
@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("ruleCount")
private Integer ruleCount;
@com.aliyun.core.annotation.NameInMap("templateCode")
private String templateCode;
@com.aliyun.core.annotation.NameInMap("templateName")
private String templateName;
@com.aliyun.core.annotation.NameInMap("templateType")
private String templateType;
@com.aliyun.core.annotation.NameInMap("userCount")
private Integer userCount;
private ResultObject(Builder builder) {
this.children = builder.children;
this.eventCode = builder.eventCode;
this.eventName = builder.eventName;
this.eventStatus = builder.eventStatus;
this.eventType = builder.eventType;
this.gmtCreate = builder.gmtCreate;
this.gmtModified = builder.gmtModified;
this.id = builder.id;
this.ruleCount = builder.ruleCount;
this.templateCode = builder.templateCode;
this.templateName = builder.templateName;
this.templateType = builder.templateType;
this.userCount = builder.userCount;
}
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 eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return eventName
*/
public String getEventName() {
return this.eventName;
}
/**
* @return eventStatus
*/
public String getEventStatus() {
return this.eventStatus;
}
/**
* @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 ruleCount
*/
public Integer getRuleCount() {
return this.ruleCount;
}
/**
* @return templateCode
*/
public String getTemplateCode() {
return this.templateCode;
}
/**
* @return templateName
*/
public String getTemplateName() {
return this.templateName;
}
/**
* @return templateType
*/
public String getTemplateType() {
return this.templateType;
}
/**
* @return userCount
*/
public Integer getUserCount() {
return this.userCount;
}
public static final class Builder {
private java.util.List<Children> children;
private String eventCode;
private String eventName;
private String eventStatus;
private String eventType;
private Long gmtCreate;
private Long gmtModified;
private Long id;
private Integer ruleCount;
private String templateCode;
private String templateName;
private String templateType;
private Integer userCount;
private Builder() {
}
private Builder(ResultObject model) {
this.children = model.children;
this.eventCode = model.eventCode;
this.eventName = model.eventName;
this.eventStatus = model.eventStatus;
this.eventType = model.eventType;
this.gmtCreate = model.gmtCreate;
this.gmtModified = model.gmtModified;
this.id = model.id;
this.ruleCount = model.ruleCount;
this.templateCode = model.templateCode;
this.templateName = model.templateName;
this.templateType = model.templateType;
this.userCount = model.userCount;
}
/**
* <p>Object</p>
*/
public Builder children(java.util.List<Children> children) {
this.children = children;
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 status.</p>
*
* <strong>example:</strong>
* <p>ONLINE</p>
*/
public Builder eventStatus(String eventStatus) {
this.eventStatus = eventStatus;
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>Database ID.</p>
*
* <strong>example:</strong>
* <p>497</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Total number of rules.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder ruleCount(Integer ruleCount) {
this.ruleCount = ruleCount;
return this;
}
/**
* <p>Template code</p>
*
* <strong>example:</strong>
* <p>register</p>
*/
public Builder templateCode(String templateCode) {
this.templateCode = templateCode;
return this;
}
/**
* <p>Template name.</p>
*
* <strong>example:</strong>
* <p>注册模版</p>
*/
public Builder templateName(String templateName) {
this.templateName = templateName;
return this;
}
/**
* <p>Template type</p>
*
* <strong>example:</strong>
* <p>UNIVERSAL</p>
*/
public Builder templateType(String templateType) {
this.templateType = templateType;
return this;
}
/**
* <p>Number of customer authorizations</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder userCount(Integer userCount) {
this.userCount = userCount;
return this;
}
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/DescribeEventResultBarChartRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventResultBarChartRequest} extends {@link RequestModel}
*
* <p>DescribeEventResultBarChartRequest</p>
*/
public class DescribeEventResultBarChartRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("beginTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long beginTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("endTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long endTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventCodes")
private String eventCodes;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeEventResultBarChartRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.beginTime = builder.beginTime;
this.endTime = builder.endTime;
this.eventCodes = builder.eventCodes;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventResultBarChartRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return beginTime
*/
public Long getBeginTime() {
return this.beginTime;
}
/**
* @return endTime
*/
public Long getEndTime() {
return this.endTime;
}
/**
* @return eventCodes
*/
public String getEventCodes() {
return this.eventCodes;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeEventResultBarChartRequest, Builder> {
private String lang;
private Long beginTime;
private Long endTime;
private String eventCodes;
private String regId;
private Builder() {
super();
}
private Builder(DescribeEventResultBarChartRequest request) {
super(request);
this.lang = request.lang;
this.beginTime = request.beginTime;
this.endTime = request.endTime;
this.eventCodes = request.eventCodes;
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>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1737101348000</p>
*/
public Builder beginTime(Long beginTime) {
this.putQueryParameter("beginTime", beginTime);
this.beginTime = beginTime;
return this;
}
/**
* <p>End time, accurate to milliseconds (ms).</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1744337383000</p>
*/
public Builder endTime(Long endTime) {
this.putQueryParameter("endTime", endTime);
this.endTime = endTime;
return this;
}
/**
* <p>Event code.</p>
*
* <strong>example:</strong>
* <p>de_ahqhsw7665,de_ahqhsw7622</p>
*/
public Builder eventCodes(String eventCodes) {
this.putQueryParameter("eventCodes", eventCodes);
this.eventCodes = eventCodes;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeEventResultBarChartRequest build() {
return new DescribeEventResultBarChartRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventResultBarChartResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventResultBarChartResponse} extends {@link TeaModel}
*
* <p>DescribeEventResultBarChartResponse</p>
*/
public class DescribeEventResultBarChartResponse 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 DescribeEventResultBarChartResponseBody body;
private DescribeEventResultBarChartResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeEventResultBarChartResponse 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 DescribeEventResultBarChartResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeEventResultBarChartResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeEventResultBarChartResponseBody body);
@Override
DescribeEventResultBarChartResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeEventResultBarChartResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeEventResultBarChartResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeEventResultBarChartResponse 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(DescribeEventResultBarChartResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeEventResultBarChartResponse build() {
return new DescribeEventResultBarChartResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventResultBarChartResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventResultBarChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventResultBarChartResponseBody</p>
*/
public class DescribeEventResultBarChartResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("httpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private DescribeEventResultBarChartResponseBody(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 DescribeEventResultBarChartResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String httpStatusCode;
private String message;
private String requestId;
private ResultObject resultObject;
private Boolean success;
private Builder() {
}
private Builder(DescribeEventResultBarChartResponseBody model) {
this.code = model.code;
this.httpStatusCode = model.httpStatusCode;
this.message = model.message;
this.requestId = model.requestId;
this.resultObject = model.resultObject;
this.success = model.success;
}
/**
* <p>Status code.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>HTTP status code</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpStatusCode(String httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
/**
* <p>Error message.</p>
*
* <strong>example:</strong>
* <p>The input parameter data is not valid. order_storage_company_num component not found</p>
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* <p>Request ID</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Whether the request was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeEventResultBarChartResponseBody build() {
return new DescribeEventResultBarChartResponseBody(this);
}
}
/**
*
* {@link DescribeEventResultBarChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventResultBarChartResponseBody</p>
*/
public static class Data extends TeaModel {
@com.aliyun.core.annotation.NameInMap("num")
private Long num;
@com.aliyun.core.annotation.NameInMap("scale")
private String scale;
private Data(Builder builder) {
this.num = builder.num;
this.scale = builder.scale;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return num
*/
public Long getNum() {
return this.num;
}
/**
* @return scale
*/
public String getScale() {
return this.scale;
}
public static final class Builder {
private Long num;
private String scale;
private Builder() {
}
private Builder(Data model) {
this.num = model.num;
this.scale = model.scale;
}
/**
* <p>Number.</p>
*
* <strong>example:</strong>
* <p>100</p>
*/
public Builder num(Long num) {
this.num = num;
return this;
}
/**
* <p>Scale</p>
*
* <strong>example:</strong>
* <p>50.00%</p>
*/
public Builder scale(String scale) {
this.scale = scale;
return this;
}
public Data build() {
return new Data(this);
}
}
}
/**
*
* {@link DescribeEventResultBarChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventResultBarChartResponseBody</p>
*/
public static class Series extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private java.util.List<Data> data;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("stack")
private String stack;
private Series(Builder builder) {
this.data = builder.data;
this.name = builder.name;
this.stack = builder.stack;
}
public static Builder builder() {
return new Builder();
}
public static Series create() {
return builder().build();
}
/**
* @return data
*/
public java.util.List<Data> getData() {
return this.data;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return stack
*/
public String getStack() {
return this.stack;
}
public static final class Builder {
private java.util.List<Data> data;
private String name;
private String stack;
private Builder() {
}
private Builder(Series model) {
this.data = model.data;
this.name = model.name;
this.stack = model.stack;
}
/**
* <p>Returned data object</p>
*/
public Builder data(java.util.List<Data> data) {
this.data = data;
return this;
}
/**
* <p>Series name.</p>
*
* <strong>example:</strong>
* <p>通过</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Label key</p>
*
* <strong>example:</strong>
* <p>通过</p>
*/
public Builder stack(String stack) {
this.stack = stack;
return this;
}
public Series build() {
return new Series(this);
}
}
}
/**
*
* {@link DescribeEventResultBarChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventResultBarChartResponseBody</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>Returned data object</p>
*/
public Builder data(java.util.List<String> data) {
this.data = data;
return this;
}
public Xaxis build() {
return new Xaxis(this);
}
}
}
/**
*
* {@link DescribeEventResultBarChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventResultBarChartResponseBody</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>Chart data</p>
*/
public Builder series(java.util.List<Series> series) {
this.series = series;
return this;
}
/**
* <p>xaxis interface configuration.</p>
*/
public Builder xaxis(Xaxis xaxis) {
this.xaxis = xaxis;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventResultListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventResultListRequest} extends {@link RequestModel}
*
* <p>DescribeEventResultListRequest</p>
*/
public class DescribeEventResultListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("beginTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long beginTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("currentPage")
private Long currentPage;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("endTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long endTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("pageSize")
private Long pageSize;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeEventResultListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.beginTime = builder.beginTime;
this.currentPage = builder.currentPage;
this.endTime = builder.endTime;
this.pageSize = builder.pageSize;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventResultListRequest 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 currentPage
*/
public Long getCurrentPage() {
return this.currentPage;
}
/**
* @return endTime
*/
public Long getEndTime() {
return this.endTime;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeEventResultListRequest, Builder> {
private String lang;
private Long beginTime;
private Long currentPage;
private Long endTime;
private Long pageSize;
private String regId;
private Builder() {
super();
}
private Builder(DescribeEventResultListRequest request) {
super(request);
this.lang = request.lang;
this.beginTime = request.beginTime;
this.currentPage = request.currentPage;
this.endTime = request.endTime;
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>Start time, accurate to milliseconds (ms).</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1737101348000</p>
*/
public Builder beginTime(Long beginTime) {
this.putQueryParameter("beginTime", beginTime);
this.beginTime = beginTime;
return this;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Long currentPage) {
this.putQueryParameter("currentPage", currentPage);
this.currentPage = currentPage;
return this;
}
/**
* <p>End time, accurate to milliseconds (ms).</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1683616457000</p>
*/
public Builder endTime(Long endTime) {
this.putQueryParameter("endTime", endTime);
this.endTime = endTime;
return this;
}
/**
* <p>Page size, default value is 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Long pageSize) {
this.putQueryParameter("pageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeEventResultListRequest build() {
return new DescribeEventResultListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventResultListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventResultListResponse} extends {@link TeaModel}
*
* <p>DescribeEventResultListResponse</p>
*/
public class DescribeEventResultListResponse 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 DescribeEventResultListResponseBody body;
private DescribeEventResultListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeEventResultListResponse 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 DescribeEventResultListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeEventResultListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeEventResultListResponseBody body);
@Override
DescribeEventResultListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeEventResultListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeEventResultListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeEventResultListResponse 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(DescribeEventResultListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeEventResultListResponse build() {
return new DescribeEventResultListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventResultListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventResultListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventResultListResponseBody</p>
*/
public class DescribeEventResultListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("currentPage")
private Long currentPage;
@com.aliyun.core.annotation.NameInMap("httpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("pageSize")
private Long 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("success")
private Boolean success;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Long totalItem;
@com.aliyun.core.annotation.NameInMap("totalPage")
private Long totalPage;
private DescribeEventResultListResponseBody(Builder builder) {
this.code = builder.code;
this.currentPage = builder.currentPage;
this.httpStatusCode = builder.httpStatusCode;
this.message = builder.message;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
this.success = builder.success;
this.totalItem = builder.totalItem;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventResultListResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return currentPage
*/
public Long getCurrentPage() {
return this.currentPage;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @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;
}
/**
* @return totalItem
*/
public Long getTotalItem() {
return this.totalItem;
}
/**
* @return totalPage
*/
public Long getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private String code;
private Long currentPage;
private String httpStatusCode;
private String message;
private Long pageSize;
private String requestId;
private java.util.List<ResultObject> resultObject;
private Boolean success;
private Long totalItem;
private Long totalPage;
private Builder() {
}
private Builder(DescribeEventResultListResponseBody model) {
this.code = model.code;
this.currentPage = model.currentPage;
this.httpStatusCode = model.httpStatusCode;
this.message = model.message;
this.pageSize = model.pageSize;
this.requestId = model.requestId;
this.resultObject = model.resultObject;
this.success = model.success;
this.totalItem = model.totalItem;
this.totalPage = model.totalPage;
}
/**
* <p>Status code.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Long currentPage) {
this.currentPage = currentPage;
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>Page size, default value is 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Long 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>Whether the query was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
/**
* <p>Total number of items.</p>
*
* <strong>example:</strong>
* <p>31</p>
*/
public Builder totalItem(Long totalItem) {
this.totalItem = totalItem;
return this;
}
/**
* <p>Total number of pages</p>
*
* <strong>example:</strong>
* <p>9</p>
*/
public Builder totalPage(Long totalPage) {
this.totalPage = totalPage;
return this;
}
public DescribeEventResultListResponseBody build() {
return new DescribeEventResultListResponseBody(this);
}
}
/**
*
* {@link DescribeEventResultListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventResultListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("eventCode")
private String eventCode;
@com.aliyun.core.annotation.NameInMap("eventName")
private String eventName;
@com.aliyun.core.annotation.NameInMap("passNum")
private Long passNum;
@com.aliyun.core.annotation.NameInMap("pendingNum")
private Long pendingNum;
@com.aliyun.core.annotation.NameInMap("rejectNum")
private Long rejectNum;
@com.aliyun.core.annotation.NameInMap("totalNum")
private Long totalNum;
private ResultObject(Builder builder) {
this.eventCode = builder.eventCode;
this.eventName = builder.eventName;
this.passNum = builder.passNum;
this.pendingNum = builder.pendingNum;
this.rejectNum = builder.rejectNum;
this.totalNum = builder.totalNum;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return eventName
*/
public String getEventName() {
return this.eventName;
}
/**
* @return passNum
*/
public Long getPassNum() {
return this.passNum;
}
/**
* @return pendingNum
*/
public Long getPendingNum() {
return this.pendingNum;
}
/**
* @return rejectNum
*/
public Long getRejectNum() {
return this.rejectNum;
}
/**
* @return totalNum
*/
public Long getTotalNum() {
return this.totalNum;
}
public static final class Builder {
private String eventCode;
private String eventName;
private Long passNum;
private Long pendingNum;
private Long rejectNum;
private Long totalNum;
private Builder() {
}
private Builder(ResultObject model) {
this.eventCode = model.eventCode;
this.eventName = model.eventName;
this.passNum = model.passNum;
this.pendingNum = model.pendingNum;
this.rejectNum = model.rejectNum;
this.totalNum = model.totalNum;
}
/**
* <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>Number of passed checks.</p>
*
* <strong>example:</strong>
* <p>90</p>
*/
public Builder passNum(Long passNum) {
this.passNum = passNum;
return this;
}
/**
* <p>Number of pending items.</p>
*
* <strong>example:</strong>
* <p>5</p>
*/
public Builder pendingNum(Long pendingNum) {
this.pendingNum = pendingNum;
return this;
}
/**
* <p>Number of rejected approvals.</p>
*
* <strong>example:</strong>
* <p>5</p>
*/
public Builder rejectNum(Long rejectNum) {
this.rejectNum = rejectNum;
return this;
}
/**
* <p>Total number of items.</p>
*
* <strong>example:</strong>
* <p>100</p>
*/
public Builder totalNum(Long totalNum) {
this.totalNum = totalNum;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventTaskHistoryRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventTaskHistoryRequest} extends {@link RequestModel}
*
* <p>DescribeEventTaskHistoryRequest</p>
*/
public class DescribeEventTaskHistoryRequest 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 DescribeEventTaskHistoryRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventTaskHistoryRequest 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<DescribeEventTaskHistoryRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeEventTaskHistoryRequest 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 DescribeEventTaskHistoryRequest build() {
return new DescribeEventTaskHistoryRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventTaskHistoryResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventTaskHistoryResponse} extends {@link TeaModel}
*
* <p>DescribeEventTaskHistoryResponse</p>
*/
public class DescribeEventTaskHistoryResponse 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 DescribeEventTaskHistoryResponseBody body;
private DescribeEventTaskHistoryResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeEventTaskHistoryResponse 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 DescribeEventTaskHistoryResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeEventTaskHistoryResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeEventTaskHistoryResponseBody body);
@Override
DescribeEventTaskHistoryResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeEventTaskHistoryResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeEventTaskHistoryResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeEventTaskHistoryResponse 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(DescribeEventTaskHistoryResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeEventTaskHistoryResponse build() {
return new DescribeEventTaskHistoryResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventTaskHistoryResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventTaskHistoryResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventTaskHistoryResponseBody</p>
*/
public class DescribeEventTaskHistoryResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
private DescribeEventTaskHistoryResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventTaskHistoryResponseBody 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(DescribeEventTaskHistoryResponseBody 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 DescribeEventTaskHistoryResponseBody build() {
return new DescribeEventTaskHistoryResponseBody(this);
}
}
/**
*
* {@link DescribeEventTaskHistoryResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventTaskHistoryResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("taskCode")
private String taskCode;
@com.aliyun.core.annotation.NameInMap("taskName")
private String taskName;
@com.aliyun.core.annotation.NameInMap("taskStatus")
private String taskStatus;
@com.aliyun.core.annotation.NameInMap("url")
private String url;
private ResultObject(Builder builder) {
this.taskCode = builder.taskCode;
this.taskName = builder.taskName;
this.taskStatus = builder.taskStatus;
this.url = builder.url;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return taskCode
*/
public String getTaskCode() {
return this.taskCode;
}
/**
* @return taskName
*/
public String getTaskName() {
return this.taskName;
}
/**
* @return taskStatus
*/
public String getTaskStatus() {
return this.taskStatus;
}
/**
* @return url
*/
public String getUrl() {
return this.url;
}
public static final class Builder {
private String taskCode;
private String taskName;
private String taskStatus;
private String url;
private Builder() {
}
private Builder(ResultObject model) {
this.taskCode = model.taskCode;
this.taskName = model.taskName;
this.taskStatus = model.taskStatus;
this.url = model.url;
}
/**
* <p>Task code.</p>
*
* <strong>example:</strong>
* <p>de_aoxcdy9473</p>
*/
public Builder taskCode(String taskCode) {
this.taskCode = taskCode;
return this;
}
/**
* <p>Task name</p>
*
* <strong>example:</strong>
* <p>仿真任务</p>
*/
public Builder taskName(String taskName) {
this.taskName = taskName;
return this;
}
/**
* <p>Task status.</p>
*
* <strong>example:</strong>
* <p>SUCCESSFUL</p>
*/
public Builder taskStatus(String taskStatus) {
this.taskStatus = taskStatus;
return this;
}
/**
* <p>OSS download URL</p>
*
* <strong>example:</strong>
* <p><a href="https://xxxxx-oss-xxxxx.xxxxxx.aliyuncs.com/xx/xx/xxx/xxxxxx.csv?Expires=1753433384&OSSAccessKeyId=xxxxxxxxx&Signature=%2F%xxxxxxxxxxxx%3D">https://xxxxx-oss-xxxxx.xxxxxx.aliyuncs.com/xx/xx/xxx/xxxxxx.csv?Expires=1753433384&OSSAccessKeyId=xxxxxxxxx&Signature=%2F%xxxxxxxxxxxx%3D</a></p>
*/
public Builder url(String url) {
this.url = url;
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/DescribeEventTotalCountReportRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventTotalCountReportRequest} extends {@link RequestModel}
*
* <p>DescribeEventTotalCountReportRequest</p>
*/
public class DescribeEventTotalCountReportRequest 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 DescribeEventTotalCountReportRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventTotalCountReportRequest 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<DescribeEventTotalCountReportRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeEventTotalCountReportRequest 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 DescribeEventTotalCountReportRequest build() {
return new DescribeEventTotalCountReportRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventTotalCountReportResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventTotalCountReportResponse} extends {@link TeaModel}
*
* <p>DescribeEventTotalCountReportResponse</p>
*/
public class DescribeEventTotalCountReportResponse 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 DescribeEventTotalCountReportResponseBody body;
private DescribeEventTotalCountReportResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeEventTotalCountReportResponse 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 DescribeEventTotalCountReportResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeEventTotalCountReportResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeEventTotalCountReportResponseBody body);
@Override
DescribeEventTotalCountReportResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeEventTotalCountReportResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeEventTotalCountReportResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeEventTotalCountReportResponse 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(DescribeEventTotalCountReportResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeEventTotalCountReportResponse build() {
return new DescribeEventTotalCountReportResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventTotalCountReportResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventTotalCountReportResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventTotalCountReportResponseBody</p>
*/
public class DescribeEventTotalCountReportResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("httpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private DescribeEventTotalCountReportResponseBody(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 DescribeEventTotalCountReportResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String httpStatusCode;
private String message;
private String requestId;
private ResultObject resultObject;
private Boolean success;
private Builder() {
}
private Builder(DescribeEventTotalCountReportResponseBody model) {
this.code = model.code;
this.httpStatusCode = model.httpStatusCode;
this.message = model.message;
this.requestId = model.requestId;
this.resultObject = model.resultObject;
this.success = model.success;
}
/**
* <p>Status code</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>HTTP status code</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpStatusCode(String httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
/**
* <p>Error message.</p>
*
* <strong>example:</strong>
* <p>The input parameter data is not valid. order_storage_company_num component not found</p>
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Indicates whether this operation was successful, <code>true</code> means success.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeEventTotalCountReportResponseBody build() {
return new DescribeEventTotalCountReportResponseBody(this);
}
}
/**
*
* {@link DescribeEventTotalCountReportResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventTotalCountReportResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("ratio")
private String ratio;
@com.aliyun.core.annotation.NameInMap("value")
private String value;
private ResultObject(Builder builder) {
this.ratio = builder.ratio;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return ratio
*/
public String getRatio() {
return this.ratio;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
public static final class Builder {
private String ratio;
private String value;
private Builder() {
}
private Builder(ResultObject model) {
this.ratio = model.ratio;
this.value = model.value;
}
/**
* <p>Comparison with yesterday"s event invocation count</p>
*
* <strong>example:</strong>
* <p>101</p>
*/
public Builder ratio(String ratio) {
this.ratio = ratio;
return this;
}
/**
* <p>Today"s event invocation count</p>
*
* <strong>example:</strong>
* <p>100</p>
*/
public Builder value(String value) {
this.value = value;
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/DescribeEventUploadPolicyRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventUploadPolicyRequest} extends {@link RequestModel}
*
* <p>DescribeEventUploadPolicyRequest</p>
*/
public class DescribeEventUploadPolicyRequest 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 DescribeEventUploadPolicyRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventUploadPolicyRequest 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<DescribeEventUploadPolicyRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeEventUploadPolicyRequest 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 DescribeEventUploadPolicyRequest build() {
return new DescribeEventUploadPolicyRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventUploadPolicyResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventUploadPolicyResponse} extends {@link TeaModel}
*
* <p>DescribeEventUploadPolicyResponse</p>
*/
public class DescribeEventUploadPolicyResponse 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 DescribeEventUploadPolicyResponseBody body;
private DescribeEventUploadPolicyResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeEventUploadPolicyResponse 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 DescribeEventUploadPolicyResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeEventUploadPolicyResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeEventUploadPolicyResponseBody body);
@Override
DescribeEventUploadPolicyResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeEventUploadPolicyResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeEventUploadPolicyResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeEventUploadPolicyResponse 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(DescribeEventUploadPolicyResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeEventUploadPolicyResponse build() {
return new DescribeEventUploadPolicyResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventUploadPolicyResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventUploadPolicyResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventUploadPolicyResponseBody</p>
*/
public class DescribeEventUploadPolicyResponseBody 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 DescribeEventUploadPolicyResponseBody(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 DescribeEventUploadPolicyResponseBody 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(DescribeEventUploadPolicyResponseBody 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>ID for accessing OSS</p>
*
* <strong>example:</strong>
* <p>LTAxxxxxxxxxxxx</p>
*/
public Builder accessId(String accessId) {
this.accessId = accessId;
return this;
}
/**
* <p>OSS host.</p>
*
* <strong>example:</strong>
* <p>172.16.0.44</p>
*/
public Builder host(String host) {
this.host = host;
return this;
}
/**
* <p>The 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>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 data.</p>
*
* <strong>example:</strong>
* <p>7aXmkd2Z3oksCXOS9uvKlJuOKaY=</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 DescribeEventUploadPolicyResponseBody build() {
return new DescribeEventUploadPolicyResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventVariableListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventVariableListRequest} extends {@link RequestModel}
*
* <p>DescribeEventVariableListRequest</p>
*/
public class DescribeEventVariableListRequest 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("filterDTO")
private String filterDTO;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("refObjId")
@com.aliyun.core.annotation.Validation(required = true)
private String refObjId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("refObjType")
@com.aliyun.core.annotation.Validation(required = true)
private String refObjType;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("type")
private String type;
private DescribeEventVariableListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.createType = builder.createType;
this.filterDTO = builder.filterDTO;
this.refObjId = builder.refObjId;
this.refObjType = builder.refObjType;
this.regId = builder.regId;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventVariableListRequest 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 filterDTO
*/
public String getFilterDTO() {
return this.filterDTO;
}
/**
* @return refObjId
*/
public String getRefObjId() {
return this.refObjId;
}
/**
* @return refObjType
*/
public String getRefObjType() {
return this.refObjType;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
public static final class Builder extends Request.Builder<DescribeEventVariableListRequest, Builder> {
private String lang;
private String createType;
private String filterDTO;
private String refObjId;
private String refObjType;
private String regId;
private String type;
private Builder() {
super();
}
private Builder(DescribeEventVariableListRequest request) {
super(request);
this.lang = request.lang;
this.createType = request.createType;
this.filterDTO = request.filterDTO;
this.refObjId = request.refObjId;
this.refObjType = request.refObjType;
this.regId = request.regId;
this.type = request.type;
}
/**
* <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. The values are: - <strong>zh</strong>: Chinese - <strong>en</strong>: English</p>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Create Type.</p>
*
* <strong>example:</strong>
* <p>NORMAL</p>
*/
public Builder createType(String createType) {
this.putQueryParameter("createType", createType);
this.createType = createType;
return this;
}
/**
* <p>Filter object.</p>
*
* <strong>example:</strong>
* <p>{
* "type": "EXPRESSION",
* "name": "ex_NgR6nDVD821c"
* }</p>
*/
public Builder filterDTO(String filterDTO) {
this.putQueryParameter("filterDTO", filterDTO);
this.filterDTO = filterDTO;
return this;
}
/**
* <p>Associated event eventCode.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>de_awkhwh0314</p>
*/
public Builder refObjId(String refObjId) {
this.putQueryParameter("refObjId", refObjId);
this.refObjId = refObjId;
return this;
}
/**
* <p>Association Type.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>EVENT</p>
*/
public Builder refObjType(String refObjType) {
this.putQueryParameter("refObjType", refObjType);
this.refObjType = refObjType;
return this;
}
/**
* <p>Region Code.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>type.</p>
*
* <strong>example:</strong>
* <p>NATIVE</p>
*/
public Builder type(String type) {
this.putQueryParameter("type", type);
this.type = type;
return this;
}
@Override
public DescribeEventVariableListRequest build() {
return new DescribeEventVariableListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventVariableListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventVariableListResponse} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponse</p>
*/
public class DescribeEventVariableListResponse 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 DescribeEventVariableListResponseBody body;
private DescribeEventVariableListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeEventVariableListResponse 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 DescribeEventVariableListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeEventVariableListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeEventVariableListResponseBody body);
@Override
DescribeEventVariableListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeEventVariableListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeEventVariableListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeEventVariableListResponse 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(DescribeEventVariableListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeEventVariableListResponse build() {
return new DescribeEventVariableListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventVariableListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public class DescribeEventVariableListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
private DescribeEventVariableListResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventVariableListResponseBody 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(DescribeEventVariableListResponseBody 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 DescribeEventVariableListResponseBody build() {
return new DescribeEventVariableListResponseBody(this);
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class OutputThreshold extends TeaModel {
@com.aliyun.core.annotation.NameInMap("maxValue")
private Double maxValue;
@com.aliyun.core.annotation.NameInMap("minValue")
private Double minValue;
private OutputThreshold(Builder builder) {
this.maxValue = builder.maxValue;
this.minValue = builder.minValue;
}
public static Builder builder() {
return new Builder();
}
public static OutputThreshold create() {
return builder().build();
}
/**
* @return maxValue
*/
public Double getMaxValue() {
return this.maxValue;
}
/**
* @return minValue
*/
public Double getMinValue() {
return this.minValue;
}
public static final class Builder {
private Double maxValue;
private Double minValue;
private Builder() {
}
private Builder(OutputThreshold model) {
this.maxValue = model.maxValue;
this.minValue = model.minValue;
}
/**
* <p>Maximum value.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* <p>Minimum value.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder minValue(Double minValue) {
this.minValue = minValue;
return this;
}
public OutputThreshold build() {
return new OutputThreshold(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class VariableVelocity extends TeaModel {
@com.aliyun.core.annotation.NameInMap("iv")
private String iv;
private VariableVelocity(Builder builder) {
this.iv = builder.iv;
}
public static Builder builder() {
return new Builder();
}
public static VariableVelocity create() {
return builder().build();
}
/**
* @return iv
*/
public String getIv() {
return this.iv;
}
public static final class Builder {
private String iv;
private Builder() {
}
private Builder(VariableVelocity model) {
this.iv = model.iv;
}
/**
* <p>iv value. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder iv(String iv) {
this.iv = iv;
return this;
}
public VariableVelocity build() {
return new VariableVelocity(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class Actions extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("dataDisplay")
private String dataDisplay;
@com.aliyun.core.annotation.NameInMap("defineId")
private String defineId;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("displayType")
private String displayType;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("favoriteFlag")
private Boolean favoriteFlag;
@com.aliyun.core.annotation.NameInMap("fieldDetail")
private String fieldDetail;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private Integer fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("inputFieldType")
private String inputFieldType;
@com.aliyun.core.annotation.NameInMap("inputRequired")
private String inputRequired;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputThreshold")
private OutputThreshold outputThreshold;
@com.aliyun.core.annotation.NameInMap("parentName")
private String parentName;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("variableVelocity")
private VariableVelocity variableVelocity;
@com.aliyun.core.annotation.NameInMap("xLabel")
private String xLabel;
@com.aliyun.core.annotation.NameInMap("yLabel")
private String yLabel;
private Actions(Builder builder) {
this.code = builder.code;
this.dataDisplay = builder.dataDisplay;
this.defineId = builder.defineId;
this.description = builder.description;
this.displayType = builder.displayType;
this.expressionTitle = builder.expressionTitle;
this.favoriteFlag = builder.favoriteFlag;
this.fieldDetail = builder.fieldDetail;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.id = builder.id;
this.inputFieldType = builder.inputFieldType;
this.inputRequired = builder.inputRequired;
this.inputs = builder.inputs;
this.name = builder.name;
this.outlier = builder.outlier;
this.outputThreshold = builder.outputThreshold;
this.parentName = builder.parentName;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.variableVelocity = builder.variableVelocity;
this.xLabel = builder.xLabel;
this.yLabel = builder.yLabel;
}
public static Builder builder() {
return new Builder();
}
public static Actions create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDisplay
*/
public String getDataDisplay() {
return this.dataDisplay;
}
/**
* @return defineId
*/
public String getDefineId() {
return this.defineId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayType
*/
public String getDisplayType() {
return this.displayType;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return favoriteFlag
*/
public Boolean getFavoriteFlag() {
return this.favoriteFlag;
}
/**
* @return fieldDetail
*/
public String getFieldDetail() {
return this.fieldDetail;
}
/**
* @return fieldRank
*/
public Integer getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return inputFieldType
*/
public String getInputFieldType() {
return this.inputFieldType;
}
/**
* @return inputRequired
*/
public String getInputRequired() {
return this.inputRequired;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputThreshold
*/
public OutputThreshold getOutputThreshold() {
return this.outputThreshold;
}
/**
* @return parentName
*/
public String getParentName() {
return this.parentName;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return variableVelocity
*/
public VariableVelocity getVariableVelocity() {
return this.variableVelocity;
}
/**
* @return xLabel
*/
public String getXLabel() {
return this.xLabel;
}
/**
* @return yLabel
*/
public String getYLabel() {
return this.yLabel;
}
public static final class Builder {
private String code;
private String dataDisplay;
private String defineId;
private String description;
private String displayType;
private String expressionTitle;
private Boolean favoriteFlag;
private String fieldDetail;
private Integer fieldRank;
private String fieldSource;
private String fieldType;
private Long id;
private String inputFieldType;
private String inputRequired;
private String inputs;
private String name;
private String outlier;
private OutputThreshold outputThreshold;
private String parentName;
private String sourceType;
private String title;
private String type;
private VariableVelocity variableVelocity;
private String xLabel;
private String yLabel;
private Builder() {
}
private Builder(Actions model) {
this.code = model.code;
this.dataDisplay = model.dataDisplay;
this.defineId = model.defineId;
this.description = model.description;
this.displayType = model.displayType;
this.expressionTitle = model.expressionTitle;
this.favoriteFlag = model.favoriteFlag;
this.fieldDetail = model.fieldDetail;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.id = model.id;
this.inputFieldType = model.inputFieldType;
this.inputRequired = model.inputRequired;
this.inputs = model.inputs;
this.name = model.name;
this.outlier = model.outlier;
this.outputThreshold = model.outputThreshold;
this.parentName = model.parentName;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.variableVelocity = model.variableVelocity;
this.xLabel = model.xLabel;
this.yLabel = model.yLabel;
}
/**
* <p>Variable code.</p>
*
* <strong>example:</strong>
* <p>deAddResult</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Data distribution display in JSON format. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder dataDisplay(String dataDisplay) {
this.dataDisplay = dataDisplay;
return this;
}
/**
* <p>Variable definition ID. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder defineId(String defineId) {
this.defineId = defineId;
return this;
}
/**
* <p>Description information.</p>
*
* <strong>example:</strong>
* <p>决策结果</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Display type and group label.</p>
*
* <strong>example:</strong>
* <p>ACTION</p>
*/
public Builder displayType(String displayType) {
this.displayType = displayType;
return this;
}
/**
* <p>Expression display. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>Favorite identifier.</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
public Builder favoriteFlag(Boolean favoriteFlag) {
this.favoriteFlag = favoriteFlag;
return this;
}
/**
* <p>Details of the field pool. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldDetail(String fieldDetail) {
this.fieldDetail = fieldDetail;
return this;
}
/**
* <p>Field sorting.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder fieldRank(Integer fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>Source of the field. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>Field type. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Primary key ID.</p>
*
* <strong>example:</strong>
* <p>3144</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Input type of the parameter.</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder inputFieldType(String inputFieldType) {
this.inputFieldType = inputFieldType;
return this;
}
/**
* <p>Required parameter. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputRequired(String inputRequired) {
this.inputRequired = inputRequired;
return this;
}
/**
* <p>Input parameters. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>Variable name.</p>
*
* <strong>example:</strong>
* <p><strong>addDeResult</strong></p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Anomaly value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>Output value threshold.</p>
*/
public Builder outputThreshold(OutputThreshold outputThreshold) {
this.outputThreshold = outputThreshold;
return this;
}
/**
* <p>Parent node. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* <p>Source type.</p>
*
* <strong>example:</strong>
* <p>SAF</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>决策结果</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>Variable type.</p>
*
* <strong>example:</strong>
* <p>ACTION</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>Variable metric information. This field is not returned for this type of variable.</p>
*/
public Builder variableVelocity(VariableVelocity variableVelocity) {
this.variableVelocity = variableVelocity;
return this;
}
/**
* <p>x label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder xLabel(String xLabel) {
this.xLabel = xLabel;
return this;
}
/**
* <p>y label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder yLabel(String yLabel) {
this.yLabel = yLabel;
return this;
}
public Actions build() {
return new Actions(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class DeviceVariablesOutputThreshold extends TeaModel {
@com.aliyun.core.annotation.NameInMap("maxValue")
private Double maxValue;
@com.aliyun.core.annotation.NameInMap("minValue")
private Double minValue;
private DeviceVariablesOutputThreshold(Builder builder) {
this.maxValue = builder.maxValue;
this.minValue = builder.minValue;
}
public static Builder builder() {
return new Builder();
}
public static DeviceVariablesOutputThreshold create() {
return builder().build();
}
/**
* @return maxValue
*/
public Double getMaxValue() {
return this.maxValue;
}
/**
* @return minValue
*/
public Double getMinValue() {
return this.minValue;
}
public static final class Builder {
private Double maxValue;
private Double minValue;
private Builder() {
}
private Builder(DeviceVariablesOutputThreshold model) {
this.maxValue = model.maxValue;
this.minValue = model.minValue;
}
/**
* <p>The minimum value.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* <p>The minimum value.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder minValue(Double minValue) {
this.minValue = minValue;
return this;
}
public DeviceVariablesOutputThreshold build() {
return new DeviceVariablesOutputThreshold(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class DeviceVariablesVariableVelocity extends TeaModel {
@com.aliyun.core.annotation.NameInMap("iv")
private String iv;
private DeviceVariablesVariableVelocity(Builder builder) {
this.iv = builder.iv;
}
public static Builder builder() {
return new Builder();
}
public static DeviceVariablesVariableVelocity create() {
return builder().build();
}
/**
* @return iv
*/
public String getIv() {
return this.iv;
}
public static final class Builder {
private String iv;
private Builder() {
}
private Builder(DeviceVariablesVariableVelocity model) {
this.iv = model.iv;
}
/**
* <p>The IV value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder iv(String iv) {
this.iv = iv;
return this;
}
public DeviceVariablesVariableVelocity build() {
return new DeviceVariablesVariableVelocity(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class DeviceVariables extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("dataDisplay")
private String dataDisplay;
@com.aliyun.core.annotation.NameInMap("defineId")
private String defineId;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("displayType")
private String displayType;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("favoriteFlag")
private Boolean favoriteFlag;
@com.aliyun.core.annotation.NameInMap("fieldDetail")
private String fieldDetail;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private Integer fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("inputFieldType")
private String inputFieldType;
@com.aliyun.core.annotation.NameInMap("inputRequired")
private String inputRequired;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputThreshold")
private DeviceVariablesOutputThreshold outputThreshold;
@com.aliyun.core.annotation.NameInMap("parentName")
private String parentName;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("variableVelocity")
private DeviceVariablesVariableVelocity variableVelocity;
@com.aliyun.core.annotation.NameInMap("xLabel")
private String xLabel;
@com.aliyun.core.annotation.NameInMap("yLabel")
private String yLabel;
private DeviceVariables(Builder builder) {
this.code = builder.code;
this.dataDisplay = builder.dataDisplay;
this.defineId = builder.defineId;
this.description = builder.description;
this.displayType = builder.displayType;
this.expressionTitle = builder.expressionTitle;
this.favoriteFlag = builder.favoriteFlag;
this.fieldDetail = builder.fieldDetail;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.id = builder.id;
this.inputFieldType = builder.inputFieldType;
this.inputRequired = builder.inputRequired;
this.inputs = builder.inputs;
this.name = builder.name;
this.outlier = builder.outlier;
this.outputThreshold = builder.outputThreshold;
this.parentName = builder.parentName;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.variableVelocity = builder.variableVelocity;
this.xLabel = builder.xLabel;
this.yLabel = builder.yLabel;
}
public static Builder builder() {
return new Builder();
}
public static DeviceVariables create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDisplay
*/
public String getDataDisplay() {
return this.dataDisplay;
}
/**
* @return defineId
*/
public String getDefineId() {
return this.defineId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayType
*/
public String getDisplayType() {
return this.displayType;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return favoriteFlag
*/
public Boolean getFavoriteFlag() {
return this.favoriteFlag;
}
/**
* @return fieldDetail
*/
public String getFieldDetail() {
return this.fieldDetail;
}
/**
* @return fieldRank
*/
public Integer getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return inputFieldType
*/
public String getInputFieldType() {
return this.inputFieldType;
}
/**
* @return inputRequired
*/
public String getInputRequired() {
return this.inputRequired;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputThreshold
*/
public DeviceVariablesOutputThreshold getOutputThreshold() {
return this.outputThreshold;
}
/**
* @return parentName
*/
public String getParentName() {
return this.parentName;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return variableVelocity
*/
public DeviceVariablesVariableVelocity getVariableVelocity() {
return this.variableVelocity;
}
/**
* @return xLabel
*/
public String getXLabel() {
return this.xLabel;
}
/**
* @return yLabel
*/
public String getYLabel() {
return this.yLabel;
}
public static final class Builder {
private String code;
private String dataDisplay;
private String defineId;
private String description;
private String displayType;
private String expressionTitle;
private Boolean favoriteFlag;
private String fieldDetail;
private Integer fieldRank;
private String fieldSource;
private String fieldType;
private Long id;
private String inputFieldType;
private String inputRequired;
private String inputs;
private String name;
private String outlier;
private DeviceVariablesOutputThreshold outputThreshold;
private String parentName;
private String sourceType;
private String title;
private String type;
private DeviceVariablesVariableVelocity variableVelocity;
private String xLabel;
private String yLabel;
private Builder() {
}
private Builder(DeviceVariables model) {
this.code = model.code;
this.dataDisplay = model.dataDisplay;
this.defineId = model.defineId;
this.description = model.description;
this.displayType = model.displayType;
this.expressionTitle = model.expressionTitle;
this.favoriteFlag = model.favoriteFlag;
this.fieldDetail = model.fieldDetail;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.id = model.id;
this.inputFieldType = model.inputFieldType;
this.inputRequired = model.inputRequired;
this.inputs = model.inputs;
this.name = model.name;
this.outlier = model.outlier;
this.outputThreshold = model.outputThreshold;
this.parentName = model.parentName;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.variableVelocity = model.variableVelocity;
this.xLabel = model.xLabel;
this.yLabel = model.yLabel;
}
/**
* <p>Variable code.</p>
*
* <strong>example:</strong>
* <p>queryPhoneSimulatorInfo(deviceToken)?.deviceName</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Data distribution display in JSON format. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder dataDisplay(String dataDisplay) {
this.dataDisplay = dataDisplay;
return this;
}
/**
* <p>Variable definition ID. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder defineId(String defineId) {
this.defineId = defineId;
return this;
}
/**
* <p>Description information.</p>
*
* <strong>example:</strong>
* <p>设备信息-设备名称</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>The display type and grouping label.</p>
*
* <strong>example:</strong>
* <p>DEVICE</p>
*/
public Builder displayType(String displayType) {
this.displayType = displayType;
return this;
}
/**
* <p>The display value of the calculation expression. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>The favorite flag.</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
public Builder favoriteFlag(Boolean favoriteFlag) {
this.favoriteFlag = favoriteFlag;
return this;
}
/**
* <p>The detailed information of the field in the field pool. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldDetail(String fieldDetail) {
this.fieldDetail = fieldDetail;
return this;
}
/**
* <p>The field rank.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder fieldRank(Integer fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>The source of the field. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>Field type.</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Primary key ID.</p>
*
* <strong>example:</strong>
* <p>41</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>The input type of the parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputFieldType(String inputFieldType) {
this.inputFieldType = inputFieldType;
return this;
}
/**
* <p>The required parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputRequired(String inputRequired) {
this.inputRequired = inputRequired;
return this;
}
/**
* <p>Input for the variable. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>Variable name.</p>
*
* <strong>example:</strong>
* <p><strong>device_name</strong></p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>The outlier value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>The output value threshold.</p>
*/
public Builder outputThreshold(DeviceVariablesOutputThreshold outputThreshold) {
this.outputThreshold = outputThreshold;
return this;
}
/**
* <p>Parent node. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* <p>The source type.</p>
*
* <strong>example:</strong>
* <p>SAF</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>设备信息-设备名称-deviceName</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>Variable type.</p>
*
* <strong>example:</strong>
* <p>DEVICE</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>The variable metric information. This field is not returned for this type of variable.</p>
*/
public Builder variableVelocity(DeviceVariablesVariableVelocity variableVelocity) {
this.variableVelocity = variableVelocity;
return this;
}
/**
* <p>The X label. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder xLabel(String xLabel) {
this.xLabel = xLabel;
return this;
}
/**
* <p>The Y label. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder yLabel(String yLabel) {
this.yLabel = yLabel;
return this;
}
public DeviceVariables build() {
return new DeviceVariables(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class ExpressionVariablesOutputThreshold extends TeaModel {
@com.aliyun.core.annotation.NameInMap("maxValue")
private Double maxValue;
@com.aliyun.core.annotation.NameInMap("minValue")
private Double minValue;
private ExpressionVariablesOutputThreshold(Builder builder) {
this.maxValue = builder.maxValue;
this.minValue = builder.minValue;
}
public static Builder builder() {
return new Builder();
}
public static ExpressionVariablesOutputThreshold create() {
return builder().build();
}
/**
* @return maxValue
*/
public Double getMaxValue() {
return this.maxValue;
}
/**
* @return minValue
*/
public Double getMinValue() {
return this.minValue;
}
public static final class Builder {
private Double maxValue;
private Double minValue;
private Builder() {
}
private Builder(ExpressionVariablesOutputThreshold model) {
this.maxValue = model.maxValue;
this.minValue = model.minValue;
}
/**
* <p>The maximum value.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* <p>The minimum value.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder minValue(Double minValue) {
this.minValue = minValue;
return this;
}
public ExpressionVariablesOutputThreshold build() {
return new ExpressionVariablesOutputThreshold(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class ExpressionVariablesVariableVelocity extends TeaModel {
@com.aliyun.core.annotation.NameInMap("iv")
private String iv;
private ExpressionVariablesVariableVelocity(Builder builder) {
this.iv = builder.iv;
}
public static Builder builder() {
return new Builder();
}
public static ExpressionVariablesVariableVelocity create() {
return builder().build();
}
/**
* @return iv
*/
public String getIv() {
return this.iv;
}
public static final class Builder {
private String iv;
private Builder() {
}
private Builder(ExpressionVariablesVariableVelocity model) {
this.iv = model.iv;
}
/**
* <p>The IV value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder iv(String iv) {
this.iv = iv;
return this;
}
public ExpressionVariablesVariableVelocity build() {
return new ExpressionVariablesVariableVelocity(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class ExpressionVariables extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("dataDisplay")
private String dataDisplay;
@com.aliyun.core.annotation.NameInMap("defineId")
private String defineId;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("displayType")
private String displayType;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("favoriteFlag")
private Boolean favoriteFlag;
@com.aliyun.core.annotation.NameInMap("fieldDetail")
private String fieldDetail;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private Integer fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("inputFieldType")
private String inputFieldType;
@com.aliyun.core.annotation.NameInMap("inputRequired")
private String inputRequired;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputThreshold")
private ExpressionVariablesOutputThreshold outputThreshold;
@com.aliyun.core.annotation.NameInMap("parentName")
private String parentName;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("variableVelocity")
private ExpressionVariablesVariableVelocity variableVelocity;
@com.aliyun.core.annotation.NameInMap("xLabel")
private String xLabel;
@com.aliyun.core.annotation.NameInMap("yLabel")
private String yLabel;
private ExpressionVariables(Builder builder) {
this.code = builder.code;
this.dataDisplay = builder.dataDisplay;
this.defineId = builder.defineId;
this.description = builder.description;
this.displayType = builder.displayType;
this.expressionTitle = builder.expressionTitle;
this.favoriteFlag = builder.favoriteFlag;
this.fieldDetail = builder.fieldDetail;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.id = builder.id;
this.inputFieldType = builder.inputFieldType;
this.inputRequired = builder.inputRequired;
this.inputs = builder.inputs;
this.name = builder.name;
this.outlier = builder.outlier;
this.outputThreshold = builder.outputThreshold;
this.parentName = builder.parentName;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.variableVelocity = builder.variableVelocity;
this.xLabel = builder.xLabel;
this.yLabel = builder.yLabel;
}
public static Builder builder() {
return new Builder();
}
public static ExpressionVariables create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDisplay
*/
public String getDataDisplay() {
return this.dataDisplay;
}
/**
* @return defineId
*/
public String getDefineId() {
return this.defineId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayType
*/
public String getDisplayType() {
return this.displayType;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return favoriteFlag
*/
public Boolean getFavoriteFlag() {
return this.favoriteFlag;
}
/**
* @return fieldDetail
*/
public String getFieldDetail() {
return this.fieldDetail;
}
/**
* @return fieldRank
*/
public Integer getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return inputFieldType
*/
public String getInputFieldType() {
return this.inputFieldType;
}
/**
* @return inputRequired
*/
public String getInputRequired() {
return this.inputRequired;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputThreshold
*/
public ExpressionVariablesOutputThreshold getOutputThreshold() {
return this.outputThreshold;
}
/**
* @return parentName
*/
public String getParentName() {
return this.parentName;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return variableVelocity
*/
public ExpressionVariablesVariableVelocity getVariableVelocity() {
return this.variableVelocity;
}
/**
* @return xLabel
*/
public String getXLabel() {
return this.xLabel;
}
/**
* @return yLabel
*/
public String getYLabel() {
return this.yLabel;
}
public static final class Builder {
private String code;
private String dataDisplay;
private String defineId;
private String description;
private String displayType;
private String expressionTitle;
private Boolean favoriteFlag;
private String fieldDetail;
private Integer fieldRank;
private String fieldSource;
private String fieldType;
private Long id;
private String inputFieldType;
private String inputRequired;
private String inputs;
private String name;
private String outlier;
private ExpressionVariablesOutputThreshold outputThreshold;
private String parentName;
private String sourceType;
private String title;
private String type;
private ExpressionVariablesVariableVelocity variableVelocity;
private String xLabel;
private String yLabel;
private Builder() {
}
private Builder(ExpressionVariables model) {
this.code = model.code;
this.dataDisplay = model.dataDisplay;
this.defineId = model.defineId;
this.description = model.description;
this.displayType = model.displayType;
this.expressionTitle = model.expressionTitle;
this.favoriteFlag = model.favoriteFlag;
this.fieldDetail = model.fieldDetail;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.id = model.id;
this.inputFieldType = model.inputFieldType;
this.inputRequired = model.inputRequired;
this.inputs = model.inputs;
this.name = model.name;
this.outlier = model.outlier;
this.outputThreshold = model.outputThreshold;
this.parentName = model.parentName;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.variableVelocity = model.variableVelocity;
this.xLabel = model.xLabel;
this.yLabel = model.yLabel;
}
/**
* <p>The code of the variable.</p>
*
* <strong>example:</strong>
* <p>deInvokeSelfVariable(390397)</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Data distribution display, in JSON format. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder dataDisplay(String dataDisplay) {
this.dataDisplay = dataDisplay;
return this;
}
/**
* <p>The definition ID of the variable. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder defineId(String defineId) {
this.defineId = defineId;
return this;
}
/**
* <p>The description of the variable.</p>
*
* <strong>example:</strong>
* <p>获取手机号前7位</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>The display type and grouping label.</p>
*
* <strong>example:</strong>
* <p>EXPRESSION</p>
*/
public Builder displayType(String displayType) {
this.displayType = displayType;
return this;
}
/**
* <p>The display value of the calculation expression.</p>
*
* <strong>example:</strong>
* <p>@testaaa +1</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>The favorite flag.</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
public Builder favoriteFlag(Boolean favoriteFlag) {
this.favoriteFlag = favoriteFlag;
return this;
}
/**
* <p>The detailed information of the field in the field pool. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldDetail(String fieldDetail) {
this.fieldDetail = fieldDetail;
return this;
}
/**
* <p>The field rank.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder fieldRank(Integer fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>The source of the field. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>The input type of the variable.</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Primary key ID.</p>
*
* <strong>example:</strong>
* <p>3148</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>The input type of the parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputFieldType(String inputFieldType) {
this.inputFieldType = inputFieldType;
return this;
}
/**
* <p>The required parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputRequired(String inputRequired) {
this.inputRequired = inputRequired;
return this;
}
/**
* <p>Multiple input parameters separated by commas. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>The name of the variable.</p>
*
* <strong>example:</strong>
* <p>ex_w2yIClHCc150</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>The outlier value.</p>
*
* <strong>example:</strong>
* <p>-1</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>The output value threshold.</p>
*/
public Builder outputThreshold(ExpressionVariablesOutputThreshold outputThreshold) {
this.outputThreshold = outputThreshold;
return this;
}
/**
* <p>The parent node. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* <p>The source type.</p>
*
* <strong>example:</strong>
* <p>SAF</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>获取手机号前7位</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>The type of the variable.</p>
*
* <strong>example:</strong>
* <p>EXPRESSION</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>The variable metric information. This field is not returned for this type of variable.</p>
*/
public Builder variableVelocity(ExpressionVariablesVariableVelocity variableVelocity) {
this.variableVelocity = variableVelocity;
return this;
}
/**
* <p>The X label. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder xLabel(String xLabel) {
this.xLabel = xLabel;
return this;
}
/**
* <p>The Y label. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder yLabel(String yLabel) {
this.yLabel = yLabel;
return this;
}
public ExpressionVariables build() {
return new ExpressionVariables(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class FavoriteVariablesOutputThreshold extends TeaModel {
@com.aliyun.core.annotation.NameInMap("maxValue")
private Double maxValue;
@com.aliyun.core.annotation.NameInMap("minValue")
private Double minValue;
private FavoriteVariablesOutputThreshold(Builder builder) {
this.maxValue = builder.maxValue;
this.minValue = builder.minValue;
}
public static Builder builder() {
return new Builder();
}
public static FavoriteVariablesOutputThreshold create() {
return builder().build();
}
/**
* @return maxValue
*/
public Double getMaxValue() {
return this.maxValue;
}
/**
* @return minValue
*/
public Double getMinValue() {
return this.minValue;
}
public static final class Builder {
private Double maxValue;
private Double minValue;
private Builder() {
}
private Builder(FavoriteVariablesOutputThreshold model) {
this.maxValue = model.maxValue;
this.minValue = model.minValue;
}
/**
* <p>Maximum value.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* <p>Minimum value.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder minValue(Double minValue) {
this.minValue = minValue;
return this;
}
public FavoriteVariablesOutputThreshold build() {
return new FavoriteVariablesOutputThreshold(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class FavoriteVariablesVariableVelocity extends TeaModel {
@com.aliyun.core.annotation.NameInMap("iv")
private String iv;
private FavoriteVariablesVariableVelocity(Builder builder) {
this.iv = builder.iv;
}
public static Builder builder() {
return new Builder();
}
public static FavoriteVariablesVariableVelocity create() {
return builder().build();
}
/**
* @return iv
*/
public String getIv() {
return this.iv;
}
public static final class Builder {
private String iv;
private Builder() {
}
private Builder(FavoriteVariablesVariableVelocity model) {
this.iv = model.iv;
}
/**
* <p>iv value. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder iv(String iv) {
this.iv = iv;
return this;
}
public FavoriteVariablesVariableVelocity build() {
return new FavoriteVariablesVariableVelocity(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class FavoriteVariables extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("dataDisplay")
private String dataDisplay;
@com.aliyun.core.annotation.NameInMap("defineId")
private String defineId;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("displayType")
private String displayType;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("favoriteFlag")
private Boolean favoriteFlag;
@com.aliyun.core.annotation.NameInMap("fieldDetail")
private String fieldDetail;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private Integer fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("inputFieldType")
private String inputFieldType;
@com.aliyun.core.annotation.NameInMap("inputRequired")
private String inputRequired;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputThreshold")
private FavoriteVariablesOutputThreshold outputThreshold;
@com.aliyun.core.annotation.NameInMap("parentName")
private String parentName;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("variableVelocity")
private FavoriteVariablesVariableVelocity variableVelocity;
@com.aliyun.core.annotation.NameInMap("xLabel")
private String xLabel;
@com.aliyun.core.annotation.NameInMap("yLabel")
private String yLabel;
private FavoriteVariables(Builder builder) {
this.code = builder.code;
this.dataDisplay = builder.dataDisplay;
this.defineId = builder.defineId;
this.description = builder.description;
this.displayType = builder.displayType;
this.expressionTitle = builder.expressionTitle;
this.favoriteFlag = builder.favoriteFlag;
this.fieldDetail = builder.fieldDetail;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.id = builder.id;
this.inputFieldType = builder.inputFieldType;
this.inputRequired = builder.inputRequired;
this.inputs = builder.inputs;
this.name = builder.name;
this.outlier = builder.outlier;
this.outputThreshold = builder.outputThreshold;
this.parentName = builder.parentName;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.variableVelocity = builder.variableVelocity;
this.xLabel = builder.xLabel;
this.yLabel = builder.yLabel;
}
public static Builder builder() {
return new Builder();
}
public static FavoriteVariables create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDisplay
*/
public String getDataDisplay() {
return this.dataDisplay;
}
/**
* @return defineId
*/
public String getDefineId() {
return this.defineId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayType
*/
public String getDisplayType() {
return this.displayType;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return favoriteFlag
*/
public Boolean getFavoriteFlag() {
return this.favoriteFlag;
}
/**
* @return fieldDetail
*/
public String getFieldDetail() {
return this.fieldDetail;
}
/**
* @return fieldRank
*/
public Integer getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return inputFieldType
*/
public String getInputFieldType() {
return this.inputFieldType;
}
/**
* @return inputRequired
*/
public String getInputRequired() {
return this.inputRequired;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputThreshold
*/
public FavoriteVariablesOutputThreshold getOutputThreshold() {
return this.outputThreshold;
}
/**
* @return parentName
*/
public String getParentName() {
return this.parentName;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return variableVelocity
*/
public FavoriteVariablesVariableVelocity getVariableVelocity() {
return this.variableVelocity;
}
/**
* @return xLabel
*/
public String getXLabel() {
return this.xLabel;
}
/**
* @return yLabel
*/
public String getYLabel() {
return this.yLabel;
}
public static final class Builder {
private String code;
private String dataDisplay;
private String defineId;
private String description;
private String displayType;
private String expressionTitle;
private Boolean favoriteFlag;
private String fieldDetail;
private Integer fieldRank;
private String fieldSource;
private String fieldType;
private Long id;
private String inputFieldType;
private String inputRequired;
private String inputs;
private String name;
private String outlier;
private FavoriteVariablesOutputThreshold outputThreshold;
private String parentName;
private String sourceType;
private String title;
private String type;
private FavoriteVariablesVariableVelocity variableVelocity;
private String xLabel;
private String yLabel;
private Builder() {
}
private Builder(FavoriteVariables model) {
this.code = model.code;
this.dataDisplay = model.dataDisplay;
this.defineId = model.defineId;
this.description = model.description;
this.displayType = model.displayType;
this.expressionTitle = model.expressionTitle;
this.favoriteFlag = model.favoriteFlag;
this.fieldDetail = model.fieldDetail;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.id = model.id;
this.inputFieldType = model.inputFieldType;
this.inputRequired = model.inputRequired;
this.inputs = model.inputs;
this.name = model.name;
this.outlier = model.outlier;
this.outputThreshold = model.outputThreshold;
this.parentName = model.parentName;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.variableVelocity = model.variableVelocity;
this.xLabel = model.xLabel;
this.yLabel = model.yLabel;
}
/**
* <p>Variable code.</p>
*
* <strong>example:</strong>
* <p>deFunctionProcess(ip,"isIp")</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Data distribution display in JSON format. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder dataDisplay(String dataDisplay) {
this.dataDisplay = dataDisplay;
return this;
}
/**
* <p>Variable definition ID.</p>
*
* <strong>example:</strong>
* <p>16</p>
*/
public Builder defineId(String defineId) {
this.defineId = defineId;
return this;
}
/**
* <p>Description of the variable.</p>
*
* <strong>example:</strong>
* <p>判断是否符合IPv4标准</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Display type and group label.</p>
*
* <strong>example:</strong>
* <p>SYSTEM_BIND</p>
*/
public Builder displayType(String displayType) {
this.displayType = displayType;
return this;
}
/**
* <p>Expression display value. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>Favorite identifier.</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
public Builder favoriteFlag(Boolean favoriteFlag) {
this.favoriteFlag = favoriteFlag;
return this;
}
/**
* <p>Details of the field pool. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldDetail(String fieldDetail) {
this.fieldDetail = fieldDetail;
return this;
}
/**
* <p>Field sorting.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder fieldRank(Integer fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>Source of the field. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>Field type.</p>
*
* <strong>example:</strong>
* <p>BOOLEAN</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Primary key ID.</p>
*
* <strong>example:</strong>
* <p>34</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Input type of the parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputFieldType(String inputFieldType) {
this.inputFieldType = inputFieldType;
return this;
}
/**
* <p>Required parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputRequired(String inputRequired) {
this.inputRequired = inputRequired;
return this;
}
/**
* <p>Input parameters should be separated by commas. Some variables may not have this field.</p>
*
* <strong>example:</strong>
* <p>ip</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>Variable name.</p>
*
* <strong>example:</strong>
* <p><strong>isIpAddressV4</strong></p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Anomaly value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>Output value threshold.</p>
*/
public Builder outputThreshold(FavoriteVariablesOutputThreshold outputThreshold) {
this.outputThreshold = outputThreshold;
return this;
}
/**
* <p>Parent node. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* <p>Source type.</p>
*
* <strong>example:</strong>
* <p>SAF</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>IP是否符合IPV4格式</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>Variable type.</p>
*
* <strong>example:</strong>
* <p>SYSTEM_BIND</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>Variable metric information. This field is not returned for this type of variable.</p>
*/
public Builder variableVelocity(FavoriteVariablesVariableVelocity variableVelocity) {
this.variableVelocity = variableVelocity;
return this;
}
/**
* <p>x label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder xLabel(String xLabel) {
this.xLabel = xLabel;
return this;
}
/**
* <p>y label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder yLabel(String yLabel) {
this.yLabel = yLabel;
return this;
}
public FavoriteVariables build() {
return new FavoriteVariables(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class MiddleVariablesOutputThreshold extends TeaModel {
@com.aliyun.core.annotation.NameInMap("maxValue")
private Double maxValue;
@com.aliyun.core.annotation.NameInMap("minValue")
private Double minValue;
private MiddleVariablesOutputThreshold(Builder builder) {
this.maxValue = builder.maxValue;
this.minValue = builder.minValue;
}
public static Builder builder() {
return new Builder();
}
public static MiddleVariablesOutputThreshold create() {
return builder().build();
}
/**
* @return maxValue
*/
public Double getMaxValue() {
return this.maxValue;
}
/**
* @return minValue
*/
public Double getMinValue() {
return this.minValue;
}
public static final class Builder {
private Double maxValue;
private Double minValue;
private Builder() {
}
private Builder(MiddleVariablesOutputThreshold model) {
this.maxValue = model.maxValue;
this.minValue = model.minValue;
}
/**
* <p>Maximum value.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* <p>Minimum value.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder minValue(Double minValue) {
this.minValue = minValue;
return this;
}
public MiddleVariablesOutputThreshold build() {
return new MiddleVariablesOutputThreshold(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class MiddleVariablesVariableVelocity extends TeaModel {
@com.aliyun.core.annotation.NameInMap("iv")
private String iv;
private MiddleVariablesVariableVelocity(Builder builder) {
this.iv = builder.iv;
}
public static Builder builder() {
return new Builder();
}
public static MiddleVariablesVariableVelocity create() {
return builder().build();
}
/**
* @return iv
*/
public String getIv() {
return this.iv;
}
public static final class Builder {
private String iv;
private Builder() {
}
private Builder(MiddleVariablesVariableVelocity model) {
this.iv = model.iv;
}
/**
* <p>id value. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder iv(String iv) {
this.iv = iv;
return this;
}
public MiddleVariablesVariableVelocity build() {
return new MiddleVariablesVariableVelocity(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class MiddleVariables extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("dataDisplay")
private String dataDisplay;
@com.aliyun.core.annotation.NameInMap("defineId")
private String defineId;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("displayType")
private String displayType;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("favoriteFlag")
private Boolean favoriteFlag;
@com.aliyun.core.annotation.NameInMap("fieldDetail")
private String fieldDetail;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private Integer fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("inputFieldType")
private String inputFieldType;
@com.aliyun.core.annotation.NameInMap("inputRequired")
private String inputRequired;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputThreshold")
private MiddleVariablesOutputThreshold outputThreshold;
@com.aliyun.core.annotation.NameInMap("parentName")
private String parentName;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("variableVelocity")
private MiddleVariablesVariableVelocity variableVelocity;
@com.aliyun.core.annotation.NameInMap("xLabel")
private String xLabel;
@com.aliyun.core.annotation.NameInMap("yLabel")
private String yLabel;
private MiddleVariables(Builder builder) {
this.code = builder.code;
this.dataDisplay = builder.dataDisplay;
this.defineId = builder.defineId;
this.description = builder.description;
this.displayType = builder.displayType;
this.expressionTitle = builder.expressionTitle;
this.favoriteFlag = builder.favoriteFlag;
this.fieldDetail = builder.fieldDetail;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.id = builder.id;
this.inputFieldType = builder.inputFieldType;
this.inputRequired = builder.inputRequired;
this.inputs = builder.inputs;
this.name = builder.name;
this.outlier = builder.outlier;
this.outputThreshold = builder.outputThreshold;
this.parentName = builder.parentName;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.variableVelocity = builder.variableVelocity;
this.xLabel = builder.xLabel;
this.yLabel = builder.yLabel;
}
public static Builder builder() {
return new Builder();
}
public static MiddleVariables create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDisplay
*/
public String getDataDisplay() {
return this.dataDisplay;
}
/**
* @return defineId
*/
public String getDefineId() {
return this.defineId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayType
*/
public String getDisplayType() {
return this.displayType;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return favoriteFlag
*/
public Boolean getFavoriteFlag() {
return this.favoriteFlag;
}
/**
* @return fieldDetail
*/
public String getFieldDetail() {
return this.fieldDetail;
}
/**
* @return fieldRank
*/
public Integer getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return inputFieldType
*/
public String getInputFieldType() {
return this.inputFieldType;
}
/**
* @return inputRequired
*/
public String getInputRequired() {
return this.inputRequired;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputThreshold
*/
public MiddleVariablesOutputThreshold getOutputThreshold() {
return this.outputThreshold;
}
/**
* @return parentName
*/
public String getParentName() {
return this.parentName;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return variableVelocity
*/
public MiddleVariablesVariableVelocity getVariableVelocity() {
return this.variableVelocity;
}
/**
* @return xLabel
*/
public String getXLabel() {
return this.xLabel;
}
/**
* @return yLabel
*/
public String getYLabel() {
return this.yLabel;
}
public static final class Builder {
private String code;
private String dataDisplay;
private String defineId;
private String description;
private String displayType;
private String expressionTitle;
private Boolean favoriteFlag;
private String fieldDetail;
private Integer fieldRank;
private String fieldSource;
private String fieldType;
private Long id;
private String inputFieldType;
private String inputRequired;
private String inputs;
private String name;
private String outlier;
private MiddleVariablesOutputThreshold outputThreshold;
private String parentName;
private String sourceType;
private String title;
private String type;
private MiddleVariablesVariableVelocity variableVelocity;
private String xLabel;
private String yLabel;
private Builder() {
}
private Builder(MiddleVariables model) {
this.code = model.code;
this.dataDisplay = model.dataDisplay;
this.defineId = model.defineId;
this.description = model.description;
this.displayType = model.displayType;
this.expressionTitle = model.expressionTitle;
this.favoriteFlag = model.favoriteFlag;
this.fieldDetail = model.fieldDetail;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.id = model.id;
this.inputFieldType = model.inputFieldType;
this.inputRequired = model.inputRequired;
this.inputs = model.inputs;
this.name = model.name;
this.outlier = model.outlier;
this.outputThreshold = model.outputThreshold;
this.parentName = model.parentName;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.variableVelocity = model.variableVelocity;
this.xLabel = model.xLabel;
this.yLabel = model.yLabel;
}
/**
* <p>Variable code.</p>
*
* <strong>example:</strong>
* <p>mid</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Data distribution display in JSON format. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder dataDisplay(String dataDisplay) {
this.dataDisplay = dataDisplay;
return this;
}
/**
* <p>Variable definition ID.</p>
*
* <strong>example:</strong>
* <p>register</p>
*/
public Builder defineId(String defineId) {
this.defineId = defineId;
return this;
}
/**
* <p>Variable description.</p>
*
* <strong>example:</strong>
* <p>description</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Display type and group label.</p>
*
* <strong>example:</strong>
* <p>MIDDLE</p>
*/
public Builder displayType(String displayType) {
this.displayType = displayType;
return this;
}
/**
* <p>Calculate the display value of the expression. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>Favorite identifier.</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
public Builder favoriteFlag(Boolean favoriteFlag) {
this.favoriteFlag = favoriteFlag;
return this;
}
/**
* <p>Details of the field pool. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldDetail(String fieldDetail) {
this.fieldDetail = fieldDetail;
return this;
}
/**
* <p>Field sorting.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder fieldRank(Integer fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>Variable source.</p>
*
* <strong>example:</strong>
* <p>DEFAULT</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>Field type.</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Primary key ID.</p>
*
* <strong>example:</strong>
* <p>49</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Input field type, indicating the type of input parameters, mainly used for function classification. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputFieldType(String inputFieldType) {
this.inputFieldType = inputFieldType;
return this;
}
/**
* <p>Required parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputRequired(String inputRequired) {
this.inputRequired = inputRequired;
return this;
}
/**
* <p>Input of the variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>Variable name.</p>
*
* <strong>example:</strong>
* <p>mid</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Outlier value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>Output value threshold.</p>
*/
public Builder outputThreshold(MiddleVariablesOutputThreshold outputThreshold) {
this.outputThreshold = outputThreshold;
return this;
}
/**
* <p>Parent node. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* <p>Source type.</p>
*
* <strong>example:</strong>
* <p>SAF</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>midVaribale</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>Variable type.</p>
*
* <strong>example:</strong>
* <p>MIDDLE</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>Variable metric information. This type of variable does not return this field.</p>
*/
public Builder variableVelocity(MiddleVariablesVariableVelocity variableVelocity) {
this.variableVelocity = variableVelocity;
return this;
}
/**
* <p>x label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder xLabel(String xLabel) {
this.xLabel = xLabel;
return this;
}
/**
* <p>y label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder yLabel(String yLabel) {
this.yLabel = yLabel;
return this;
}
public MiddleVariables build() {
return new MiddleVariables(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class ModelVariablesOutputThreshold extends TeaModel {
@com.aliyun.core.annotation.NameInMap("maxValue")
private Double maxValue;
@com.aliyun.core.annotation.NameInMap("minValue")
private Double minValue;
private ModelVariablesOutputThreshold(Builder builder) {
this.maxValue = builder.maxValue;
this.minValue = builder.minValue;
}
public static Builder builder() {
return new Builder();
}
public static ModelVariablesOutputThreshold create() {
return builder().build();
}
/**
* @return maxValue
*/
public Double getMaxValue() {
return this.maxValue;
}
/**
* @return minValue
*/
public Double getMinValue() {
return this.minValue;
}
public static final class Builder {
private Double maxValue;
private Double minValue;
private Builder() {
}
private Builder(ModelVariablesOutputThreshold model) {
this.maxValue = model.maxValue;
this.minValue = model.minValue;
}
/**
* <p>The maximum value.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* <p>The minimum value.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder minValue(Double minValue) {
this.minValue = minValue;
return this;
}
public ModelVariablesOutputThreshold build() {
return new ModelVariablesOutputThreshold(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class ModelVariablesVariableVelocity extends TeaModel {
@com.aliyun.core.annotation.NameInMap("iv")
private String iv;
private ModelVariablesVariableVelocity(Builder builder) {
this.iv = builder.iv;
}
public static Builder builder() {
return new Builder();
}
public static ModelVariablesVariableVelocity create() {
return builder().build();
}
/**
* @return iv
*/
public String getIv() {
return this.iv;
}
public static final class Builder {
private String iv;
private Builder() {
}
private Builder(ModelVariablesVariableVelocity model) {
this.iv = model.iv;
}
/**
* <p>The IV value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder iv(String iv) {
this.iv = iv;
return this;
}
public ModelVariablesVariableVelocity build() {
return new ModelVariablesVariableVelocity(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class ModelVariables extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("dataDisplay")
private String dataDisplay;
@com.aliyun.core.annotation.NameInMap("defineId")
private String defineId;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("displayType")
private String displayType;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("favoriteFlag")
private Boolean favoriteFlag;
@com.aliyun.core.annotation.NameInMap("fieldDetail")
private String fieldDetail;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private Integer fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("inputFieldType")
private String inputFieldType;
@com.aliyun.core.annotation.NameInMap("inputRequired")
private String inputRequired;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputThreshold")
private ModelVariablesOutputThreshold outputThreshold;
@com.aliyun.core.annotation.NameInMap("parentName")
private String parentName;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("variableVelocity")
private ModelVariablesVariableVelocity variableVelocity;
@com.aliyun.core.annotation.NameInMap("xLabel")
private String xLabel;
@com.aliyun.core.annotation.NameInMap("yLabel")
private String yLabel;
private ModelVariables(Builder builder) {
this.code = builder.code;
this.dataDisplay = builder.dataDisplay;
this.defineId = builder.defineId;
this.description = builder.description;
this.displayType = builder.displayType;
this.expressionTitle = builder.expressionTitle;
this.favoriteFlag = builder.favoriteFlag;
this.fieldDetail = builder.fieldDetail;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.id = builder.id;
this.inputFieldType = builder.inputFieldType;
this.inputRequired = builder.inputRequired;
this.inputs = builder.inputs;
this.name = builder.name;
this.outlier = builder.outlier;
this.outputThreshold = builder.outputThreshold;
this.parentName = builder.parentName;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.variableVelocity = builder.variableVelocity;
this.xLabel = builder.xLabel;
this.yLabel = builder.yLabel;
}
public static Builder builder() {
return new Builder();
}
public static ModelVariables create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDisplay
*/
public String getDataDisplay() {
return this.dataDisplay;
}
/**
* @return defineId
*/
public String getDefineId() {
return this.defineId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayType
*/
public String getDisplayType() {
return this.displayType;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return favoriteFlag
*/
public Boolean getFavoriteFlag() {
return this.favoriteFlag;
}
/**
* @return fieldDetail
*/
public String getFieldDetail() {
return this.fieldDetail;
}
/**
* @return fieldRank
*/
public Integer getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return inputFieldType
*/
public String getInputFieldType() {
return this.inputFieldType;
}
/**
* @return inputRequired
*/
public String getInputRequired() {
return this.inputRequired;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputThreshold
*/
public ModelVariablesOutputThreshold getOutputThreshold() {
return this.outputThreshold;
}
/**
* @return parentName
*/
public String getParentName() {
return this.parentName;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return variableVelocity
*/
public ModelVariablesVariableVelocity getVariableVelocity() {
return this.variableVelocity;
}
/**
* @return xLabel
*/
public String getXLabel() {
return this.xLabel;
}
/**
* @return yLabel
*/
public String getYLabel() {
return this.yLabel;
}
public static final class Builder {
private String code;
private String dataDisplay;
private String defineId;
private String description;
private String displayType;
private String expressionTitle;
private Boolean favoriteFlag;
private String fieldDetail;
private Integer fieldRank;
private String fieldSource;
private String fieldType;
private Long id;
private String inputFieldType;
private String inputRequired;
private String inputs;
private String name;
private String outlier;
private ModelVariablesOutputThreshold outputThreshold;
private String parentName;
private String sourceType;
private String title;
private String type;
private ModelVariablesVariableVelocity variableVelocity;
private String xLabel;
private String yLabel;
private Builder() {
}
private Builder(ModelVariables model) {
this.code = model.code;
this.dataDisplay = model.dataDisplay;
this.defineId = model.defineId;
this.description = model.description;
this.displayType = model.displayType;
this.expressionTitle = model.expressionTitle;
this.favoriteFlag = model.favoriteFlag;
this.fieldDetail = model.fieldDetail;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.id = model.id;
this.inputFieldType = model.inputFieldType;
this.inputRequired = model.inputRequired;
this.inputs = model.inputs;
this.name = model.name;
this.outlier = model.outlier;
this.outputThreshold = model.outputThreshold;
this.parentName = model.parentName;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.variableVelocity = model.variableVelocity;
this.xLabel = model.xLabel;
this.yLabel = model.yLabel;
}
/**
* <p>The code of the model variable.</p>
*
* <strong>example:</strong>
* <p>getAIData(model)</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Data distribution display, in JSON format. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder dataDisplay(String dataDisplay) {
this.dataDisplay = dataDisplay;
return this;
}
/**
* <p>The definition ID of the model variable. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder defineId(String defineId) {
this.defineId = defineId;
return this;
}
/**
* <p>The description of the model variable.</p>
*
* <strong>example:</strong>
* <p>BL_t_show</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>The display type and grouping label.</p>
*
* <strong>example:</strong>
* <p>MODEL</p>
*/
public Builder displayType(String displayType) {
this.displayType = displayType;
return this;
}
/**
* <p>The display value of the calculation expression. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>The favorite flag.</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
public Builder favoriteFlag(Boolean favoriteFlag) {
this.favoriteFlag = favoriteFlag;
return this;
}
/**
* <p>The detailed information of the field in the field pool. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldDetail(String fieldDetail) {
this.fieldDetail = fieldDetail;
return this;
}
/**
* <p>The field rank.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder fieldRank(Integer fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>The source of the field. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>The type of the field.</p>
*
* <strong>example:</strong>
* <p>DOUBLE</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>The primary key ID of the model variable.</p>
*
* <strong>example:</strong>
* <p>43</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>The input type of the parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputFieldType(String inputFieldType) {
this.inputFieldType = inputFieldType;
return this;
}
/**
* <p>The required parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputRequired(String inputRequired) {
this.inputRequired = inputRequired;
return this;
}
/**
* <p>Multiple input parameters separated by commas. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>The name of the model variable.</p>
*
* <strong>example:</strong>
* <p>mo_qbbyf33o66f2</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>The outlier value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>The output value threshold.</p>
*/
public Builder outputThreshold(ModelVariablesOutputThreshold outputThreshold) {
this.outputThreshold = outputThreshold;
return this;
}
/**
* <p>The parent node. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* <p>The source type.</p>
*
* <strong>example:</strong>
* <p>SAF</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>The title of the model variable.</p>
*
* <strong>example:</strong>
* <p>BL_t_show</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>The type of the model variable.</p>
*
* <strong>example:</strong>
* <p>MODEL</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>The variable metric information. This field is not returned for this type of variable.</p>
*/
public Builder variableVelocity(ModelVariablesVariableVelocity variableVelocity) {
this.variableVelocity = variableVelocity;
return this;
}
/**
* <p>The X label. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder xLabel(String xLabel) {
this.xLabel = xLabel;
return this;
}
/**
* <p>The Y label. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder yLabel(String yLabel) {
this.yLabel = yLabel;
return this;
}
public ModelVariables build() {
return new ModelVariables(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class NameListOutputThreshold extends TeaModel {
@com.aliyun.core.annotation.NameInMap("maxValue")
private Double maxValue;
@com.aliyun.core.annotation.NameInMap("minValue")
private Double minValue;
private NameListOutputThreshold(Builder builder) {
this.maxValue = builder.maxValue;
this.minValue = builder.minValue;
}
public static Builder builder() {
return new Builder();
}
public static NameListOutputThreshold create() {
return builder().build();
}
/**
* @return maxValue
*/
public Double getMaxValue() {
return this.maxValue;
}
/**
* @return minValue
*/
public Double getMinValue() {
return this.minValue;
}
public static final class Builder {
private Double maxValue;
private Double minValue;
private Builder() {
}
private Builder(NameListOutputThreshold model) {
this.maxValue = model.maxValue;
this.minValue = model.minValue;
}
/**
* <p>Maximum value.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* <p>Minimum value.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder minValue(Double minValue) {
this.minValue = minValue;
return this;
}
public NameListOutputThreshold build() {
return new NameListOutputThreshold(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class NameListVariableVelocity extends TeaModel {
@com.aliyun.core.annotation.NameInMap("iv")
private String iv;
private NameListVariableVelocity(Builder builder) {
this.iv = builder.iv;
}
public static Builder builder() {
return new Builder();
}
public static NameListVariableVelocity create() {
return builder().build();
}
/**
* @return iv
*/
public String getIv() {
return this.iv;
}
public static final class Builder {
private String iv;
private Builder() {
}
private Builder(NameListVariableVelocity model) {
this.iv = model.iv;
}
/**
* <p>iv value. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder iv(String iv) {
this.iv = iv;
return this;
}
public NameListVariableVelocity build() {
return new NameListVariableVelocity(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class NameList extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("dataDisplay")
private String dataDisplay;
@com.aliyun.core.annotation.NameInMap("defineId")
private String defineId;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("displayType")
private String displayType;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("favoriteFlag")
private Boolean favoriteFlag;
@com.aliyun.core.annotation.NameInMap("fieldDetail")
private String fieldDetail;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private Integer fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("inputFieldType")
private String inputFieldType;
@com.aliyun.core.annotation.NameInMap("inputRequired")
private String inputRequired;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputThreshold")
private NameListOutputThreshold outputThreshold;
@com.aliyun.core.annotation.NameInMap("parentName")
private String parentName;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("variableVelocity")
private NameListVariableVelocity variableVelocity;
@com.aliyun.core.annotation.NameInMap("xLabel")
private String xLabel;
@com.aliyun.core.annotation.NameInMap("yLabel")
private String yLabel;
private NameList(Builder builder) {
this.code = builder.code;
this.dataDisplay = builder.dataDisplay;
this.defineId = builder.defineId;
this.description = builder.description;
this.displayType = builder.displayType;
this.expressionTitle = builder.expressionTitle;
this.favoriteFlag = builder.favoriteFlag;
this.fieldDetail = builder.fieldDetail;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.id = builder.id;
this.inputFieldType = builder.inputFieldType;
this.inputRequired = builder.inputRequired;
this.inputs = builder.inputs;
this.name = builder.name;
this.outlier = builder.outlier;
this.outputThreshold = builder.outputThreshold;
this.parentName = builder.parentName;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.variableVelocity = builder.variableVelocity;
this.xLabel = builder.xLabel;
this.yLabel = builder.yLabel;
}
public static Builder builder() {
return new Builder();
}
public static NameList create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDisplay
*/
public String getDataDisplay() {
return this.dataDisplay;
}
/**
* @return defineId
*/
public String getDefineId() {
return this.defineId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayType
*/
public String getDisplayType() {
return this.displayType;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return favoriteFlag
*/
public Boolean getFavoriteFlag() {
return this.favoriteFlag;
}
/**
* @return fieldDetail
*/
public String getFieldDetail() {
return this.fieldDetail;
}
/**
* @return fieldRank
*/
public Integer getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return inputFieldType
*/
public String getInputFieldType() {
return this.inputFieldType;
}
/**
* @return inputRequired
*/
public String getInputRequired() {
return this.inputRequired;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputThreshold
*/
public NameListOutputThreshold getOutputThreshold() {
return this.outputThreshold;
}
/**
* @return parentName
*/
public String getParentName() {
return this.parentName;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return variableVelocity
*/
public NameListVariableVelocity getVariableVelocity() {
return this.variableVelocity;
}
/**
* @return xLabel
*/
public String getXLabel() {
return this.xLabel;
}
/**
* @return yLabel
*/
public String getYLabel() {
return this.yLabel;
}
public static final class Builder {
private String code;
private String dataDisplay;
private String defineId;
private String description;
private String displayType;
private String expressionTitle;
private Boolean favoriteFlag;
private String fieldDetail;
private Integer fieldRank;
private String fieldSource;
private String fieldType;
private Long id;
private String inputFieldType;
private String inputRequired;
private String inputs;
private String name;
private String outlier;
private NameListOutputThreshold outputThreshold;
private String parentName;
private String sourceType;
private String title;
private String type;
private NameListVariableVelocity variableVelocity;
private String xLabel;
private String yLabel;
private Builder() {
}
private Builder(NameList model) {
this.code = model.code;
this.dataDisplay = model.dataDisplay;
this.defineId = model.defineId;
this.description = model.description;
this.displayType = model.displayType;
this.expressionTitle = model.expressionTitle;
this.favoriteFlag = model.favoriteFlag;
this.fieldDetail = model.fieldDetail;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.id = model.id;
this.inputFieldType = model.inputFieldType;
this.inputRequired = model.inputRequired;
this.inputs = model.inputs;
this.name = model.name;
this.outlier = model.outlier;
this.outputThreshold = model.outputThreshold;
this.parentName = model.parentName;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.variableVelocity = model.variableVelocity;
this.xLabel = model.xLabel;
this.yLabel = model.yLabel;
}
/**
* <p>Variable code.</p>
*
* <strong>example:</strong>
* <p>nl_UN8otElLb490</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Data distribution display in JSON format. This field is not currently returned.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder dataDisplay(String dataDisplay) {
this.dataDisplay = dataDisplay;
return this;
}
/**
* <p>Variable definition ID. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder defineId(String defineId) {
this.defineId = defineId;
return this;
}
/**
* <p>Description information.</p>
*
* <strong>example:</strong>
* <p>描述</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Display type and group label.</p>
*
* <strong>example:</strong>
* <p>NAME_LIST</p>
*/
public Builder displayType(String displayType) {
this.displayType = displayType;
return this;
}
/**
* <p>Calculate the expression display value. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>Favorite identifier.</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
public Builder favoriteFlag(Boolean favoriteFlag) {
this.favoriteFlag = favoriteFlag;
return this;
}
/**
* <p>Details of the field pool. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldDetail(String fieldDetail) {
this.fieldDetail = fieldDetail;
return this;
}
/**
* <p>Field sorting.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder fieldRank(Integer fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>Source of the field. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>Field type. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Primary key ID.</p>
*
* <strong>example:</strong>
* <p>34</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Input type of the parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputFieldType(String inputFieldType) {
this.inputFieldType = inputFieldType;
return this;
}
/**
* <p>Required parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputRequired(String inputRequired) {
this.inputRequired = inputRequired;
return this;
}
/**
* <p>Input parameters. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>Variable name.</p>
*
* <strong>example:</strong>
* <p>nl_UN8otElLb490</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Outlier value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>Output value threshold.</p>
*/
public Builder outputThreshold(NameListOutputThreshold outputThreshold) {
this.outputThreshold = outputThreshold;
return this;
}
/**
* <p>Parent node. This field is not returned currently.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* <p>Source type.</p>
*
* <strong>example:</strong>
* <p>SAF</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>白名单</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>Variable type.</p>
*
* <strong>example:</strong>
* <p>NAME_LIST</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>Variable metric information. This field is not returned for this type of variable.</p>
*/
public Builder variableVelocity(NameListVariableVelocity variableVelocity) {
this.variableVelocity = variableVelocity;
return this;
}
/**
* <p>x label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder xLabel(String xLabel) {
this.xLabel = xLabel;
return this;
}
/**
* <p>y label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder yLabel(String yLabel) {
this.yLabel = yLabel;
return this;
}
public NameList build() {
return new NameList(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class NativeVariableFunctionsOutputThreshold extends TeaModel {
@com.aliyun.core.annotation.NameInMap("maxValue")
private Double maxValue;
@com.aliyun.core.annotation.NameInMap("minValue")
private Double minValue;
private NativeVariableFunctionsOutputThreshold(Builder builder) {
this.maxValue = builder.maxValue;
this.minValue = builder.minValue;
}
public static Builder builder() {
return new Builder();
}
public static NativeVariableFunctionsOutputThreshold create() {
return builder().build();
}
/**
* @return maxValue
*/
public Double getMaxValue() {
return this.maxValue;
}
/**
* @return minValue
*/
public Double getMinValue() {
return this.minValue;
}
public static final class Builder {
private Double maxValue;
private Double minValue;
private Builder() {
}
private Builder(NativeVariableFunctionsOutputThreshold model) {
this.maxValue = model.maxValue;
this.minValue = model.minValue;
}
/**
* <p>Maximum value.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* <p>Minimum value.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder minValue(Double minValue) {
this.minValue = minValue;
return this;
}
public NativeVariableFunctionsOutputThreshold build() {
return new NativeVariableFunctionsOutputThreshold(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class NativeVariableFunctionsVariableVelocity extends TeaModel {
@com.aliyun.core.annotation.NameInMap("iv")
private String iv;
private NativeVariableFunctionsVariableVelocity(Builder builder) {
this.iv = builder.iv;
}
public static Builder builder() {
return new Builder();
}
public static NativeVariableFunctionsVariableVelocity create() {
return builder().build();
}
/**
* @return iv
*/
public String getIv() {
return this.iv;
}
public static final class Builder {
private String iv;
private Builder() {
}
private Builder(NativeVariableFunctionsVariableVelocity model) {
this.iv = model.iv;
}
/**
* <p>iv value. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder iv(String iv) {
this.iv = iv;
return this;
}
public NativeVariableFunctionsVariableVelocity build() {
return new NativeVariableFunctionsVariableVelocity(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class NativeVariableFunctions extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("dataDisplay")
private String dataDisplay;
@com.aliyun.core.annotation.NameInMap("defineId")
private String defineId;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("displayType")
private String displayType;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("favoriteFlag")
private Boolean favoriteFlag;
@com.aliyun.core.annotation.NameInMap("fieldDetail")
private String fieldDetail;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private Integer fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("inputFieldType")
private String inputFieldType;
@com.aliyun.core.annotation.NameInMap("inputRequired")
private String inputRequired;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputThreshold")
private NativeVariableFunctionsOutputThreshold outputThreshold;
@com.aliyun.core.annotation.NameInMap("parentName")
private String parentName;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("variableVelocity")
private NativeVariableFunctionsVariableVelocity variableVelocity;
@com.aliyun.core.annotation.NameInMap("xLabel")
private String xLabel;
@com.aliyun.core.annotation.NameInMap("yLabel")
private String yLabel;
private NativeVariableFunctions(Builder builder) {
this.code = builder.code;
this.dataDisplay = builder.dataDisplay;
this.defineId = builder.defineId;
this.description = builder.description;
this.displayType = builder.displayType;
this.expressionTitle = builder.expressionTitle;
this.favoriteFlag = builder.favoriteFlag;
this.fieldDetail = builder.fieldDetail;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.id = builder.id;
this.inputFieldType = builder.inputFieldType;
this.inputRequired = builder.inputRequired;
this.inputs = builder.inputs;
this.name = builder.name;
this.outlier = builder.outlier;
this.outputThreshold = builder.outputThreshold;
this.parentName = builder.parentName;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.variableVelocity = builder.variableVelocity;
this.xLabel = builder.xLabel;
this.yLabel = builder.yLabel;
}
public static Builder builder() {
return new Builder();
}
public static NativeVariableFunctions create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDisplay
*/
public String getDataDisplay() {
return this.dataDisplay;
}
/**
* @return defineId
*/
public String getDefineId() {
return this.defineId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayType
*/
public String getDisplayType() {
return this.displayType;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return favoriteFlag
*/
public Boolean getFavoriteFlag() {
return this.favoriteFlag;
}
/**
* @return fieldDetail
*/
public String getFieldDetail() {
return this.fieldDetail;
}
/**
* @return fieldRank
*/
public Integer getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return inputFieldType
*/
public String getInputFieldType() {
return this.inputFieldType;
}
/**
* @return inputRequired
*/
public String getInputRequired() {
return this.inputRequired;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputThreshold
*/
public NativeVariableFunctionsOutputThreshold getOutputThreshold() {
return this.outputThreshold;
}
/**
* @return parentName
*/
public String getParentName() {
return this.parentName;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return variableVelocity
*/
public NativeVariableFunctionsVariableVelocity getVariableVelocity() {
return this.variableVelocity;
}
/**
* @return xLabel
*/
public String getXLabel() {
return this.xLabel;
}
/**
* @return yLabel
*/
public String getYLabel() {
return this.yLabel;
}
public static final class Builder {
private String code;
private String dataDisplay;
private String defineId;
private String description;
private String displayType;
private String expressionTitle;
private Boolean favoriteFlag;
private String fieldDetail;
private Integer fieldRank;
private String fieldSource;
private String fieldType;
private Long id;
private String inputFieldType;
private String inputRequired;
private String inputs;
private String name;
private String outlier;
private NativeVariableFunctionsOutputThreshold outputThreshold;
private String parentName;
private String sourceType;
private String title;
private String type;
private NativeVariableFunctionsVariableVelocity variableVelocity;
private String xLabel;
private String yLabel;
private Builder() {
}
private Builder(NativeVariableFunctions model) {
this.code = model.code;
this.dataDisplay = model.dataDisplay;
this.defineId = model.defineId;
this.description = model.description;
this.displayType = model.displayType;
this.expressionTitle = model.expressionTitle;
this.favoriteFlag = model.favoriteFlag;
this.fieldDetail = model.fieldDetail;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.id = model.id;
this.inputFieldType = model.inputFieldType;
this.inputRequired = model.inputRequired;
this.inputs = model.inputs;
this.name = model.name;
this.outlier = model.outlier;
this.outputThreshold = model.outputThreshold;
this.parentName = model.parentName;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.variableVelocity = model.variableVelocity;
this.xLabel = model.xLabel;
this.yLabel = model.yLabel;
}
/**
* <p>Variable code.</p>
*
* <strong>example:</strong>
* <p>getHourOfTimestamp({data})</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Data distribution display in JSON format. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder dataDisplay(String dataDisplay) {
this.dataDisplay = dataDisplay;
return this;
}
/**
* <p>Variable definition ID. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder defineId(String defineId) {
this.defineId = defineId;
return this;
}
/**
* <p>Description information.</p>
*
* <strong>example:</strong>
* <p>时间戳,可以是秒或者毫秒</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Display type and group label.</p>
*
* <strong>example:</strong>
* <p>FUNC</p>
*/
public Builder displayType(String displayType) {
this.displayType = displayType;
return this;
}
/**
* <p>Calculate the expression display value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>Favorite identifier.</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
public Builder favoriteFlag(Boolean favoriteFlag) {
this.favoriteFlag = favoriteFlag;
return this;
}
/**
* <p>Details of the field pool. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldDetail(String fieldDetail) {
this.fieldDetail = fieldDetail;
return this;
}
/**
* <p>Field sorting.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder fieldRank(Integer fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>Source of the field. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>Variable return type.</p>
*
* <strong>example:</strong>
* <p>LONG</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Primary key ID.</p>
*
* <strong>example:</strong>
* <p>93</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>The input type of the parameter.</p>
*
* <strong>example:</strong>
* <p>DATE</p>
*/
public Builder inputFieldType(String inputFieldType) {
this.inputFieldType = inputFieldType;
return this;
}
/**
* <p>Required parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputRequired(String inputRequired) {
this.inputRequired = inputRequired;
return this;
}
/**
* <p>Input field. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>Variable name.</p>
*
* <strong>example:</strong>
* <p><strong>getHourOfTimestamp</strong></p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Exception value. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>Output value threshold.</p>
*/
public Builder outputThreshold(NativeVariableFunctionsOutputThreshold outputThreshold) {
this.outputThreshold = outputThreshold;
return this;
}
/**
* <p>Parent node. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* <p>Source type.</p>
*
* <strong>example:</strong>
* <p>SAF</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>Variable title.</p>
*
* <strong>example:</strong>
* <p>根据时间戳获取小时</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>Variable type.</p>
*
* <strong>example:</strong>
* <p>FUNC</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>Variable metric information. This type of variable does not return this field.</p>
*/
public Builder variableVelocity(NativeVariableFunctionsVariableVelocity variableVelocity) {
this.variableVelocity = variableVelocity;
return this;
}
/**
* <p>x label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder xLabel(String xLabel) {
this.xLabel = xLabel;
return this;
}
/**
* <p>y label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder yLabel(String yLabel) {
this.yLabel = yLabel;
return this;
}
public NativeVariableFunctions build() {
return new NativeVariableFunctions(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class NativeVariablesOutputThreshold extends TeaModel {
@com.aliyun.core.annotation.NameInMap("maxValue")
private Double maxValue;
@com.aliyun.core.annotation.NameInMap("minValue")
private Double minValue;
private NativeVariablesOutputThreshold(Builder builder) {
this.maxValue = builder.maxValue;
this.minValue = builder.minValue;
}
public static Builder builder() {
return new Builder();
}
public static NativeVariablesOutputThreshold create() {
return builder().build();
}
/**
* @return maxValue
*/
public Double getMaxValue() {
return this.maxValue;
}
/**
* @return minValue
*/
public Double getMinValue() {
return this.minValue;
}
public static final class Builder {
private Double maxValue;
private Double minValue;
private Builder() {
}
private Builder(NativeVariablesOutputThreshold model) {
this.maxValue = model.maxValue;
this.minValue = model.minValue;
}
/**
* <p>Maximum value.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* <p>Minimum value.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder minValue(Double minValue) {
this.minValue = minValue;
return this;
}
public NativeVariablesOutputThreshold build() {
return new NativeVariablesOutputThreshold(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class NativeVariablesVariableVelocity extends TeaModel {
@com.aliyun.core.annotation.NameInMap("iv")
private String iv;
private NativeVariablesVariableVelocity(Builder builder) {
this.iv = builder.iv;
}
public static Builder builder() {
return new Builder();
}
public static NativeVariablesVariableVelocity create() {
return builder().build();
}
/**
* @return iv
*/
public String getIv() {
return this.iv;
}
public static final class Builder {
private String iv;
private Builder() {
}
private Builder(NativeVariablesVariableVelocity model) {
this.iv = model.iv;
}
/**
* <p>iv value.</p>
*
* <strong>example:</strong>
* <p>无</p>
*/
public Builder iv(String iv) {
this.iv = iv;
return this;
}
public NativeVariablesVariableVelocity build() {
return new NativeVariablesVariableVelocity(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class NativeVariables extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("dataDisplay")
private String dataDisplay;
@com.aliyun.core.annotation.NameInMap("defineId")
private String defineId;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("displayType")
private String displayType;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("favoriteFlag")
private Boolean favoriteFlag;
@com.aliyun.core.annotation.NameInMap("fieldDetail")
private String fieldDetail;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private Integer fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("inputFieldType")
private String inputFieldType;
@com.aliyun.core.annotation.NameInMap("inputRequired")
private String inputRequired;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputThreshold")
private NativeVariablesOutputThreshold outputThreshold;
@com.aliyun.core.annotation.NameInMap("parentName")
private String parentName;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("variableVelocity")
private NativeVariablesVariableVelocity variableVelocity;
@com.aliyun.core.annotation.NameInMap("xLabel")
private String xLabel;
@com.aliyun.core.annotation.NameInMap("yLabel")
private String yLabel;
private NativeVariables(Builder builder) {
this.code = builder.code;
this.dataDisplay = builder.dataDisplay;
this.defineId = builder.defineId;
this.description = builder.description;
this.displayType = builder.displayType;
this.expressionTitle = builder.expressionTitle;
this.favoriteFlag = builder.favoriteFlag;
this.fieldDetail = builder.fieldDetail;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.id = builder.id;
this.inputFieldType = builder.inputFieldType;
this.inputRequired = builder.inputRequired;
this.inputs = builder.inputs;
this.name = builder.name;
this.outlier = builder.outlier;
this.outputThreshold = builder.outputThreshold;
this.parentName = builder.parentName;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.variableVelocity = builder.variableVelocity;
this.xLabel = builder.xLabel;
this.yLabel = builder.yLabel;
}
public static Builder builder() {
return new Builder();
}
public static NativeVariables create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDisplay
*/
public String getDataDisplay() {
return this.dataDisplay;
}
/**
* @return defineId
*/
public String getDefineId() {
return this.defineId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayType
*/
public String getDisplayType() {
return this.displayType;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return favoriteFlag
*/
public Boolean getFavoriteFlag() {
return this.favoriteFlag;
}
/**
* @return fieldDetail
*/
public String getFieldDetail() {
return this.fieldDetail;
}
/**
* @return fieldRank
*/
public Integer getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return inputFieldType
*/
public String getInputFieldType() {
return this.inputFieldType;
}
/**
* @return inputRequired
*/
public String getInputRequired() {
return this.inputRequired;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputThreshold
*/
public NativeVariablesOutputThreshold getOutputThreshold() {
return this.outputThreshold;
}
/**
* @return parentName
*/
public String getParentName() {
return this.parentName;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return variableVelocity
*/
public NativeVariablesVariableVelocity getVariableVelocity() {
return this.variableVelocity;
}
/**
* @return xLabel
*/
public String getXLabel() {
return this.xLabel;
}
/**
* @return yLabel
*/
public String getYLabel() {
return this.yLabel;
}
public static final class Builder {
private String code;
private String dataDisplay;
private String defineId;
private String description;
private String displayType;
private String expressionTitle;
private Boolean favoriteFlag;
private String fieldDetail;
private Integer fieldRank;
private String fieldSource;
private String fieldType;
private Long id;
private String inputFieldType;
private String inputRequired;
private String inputs;
private String name;
private String outlier;
private NativeVariablesOutputThreshold outputThreshold;
private String parentName;
private String sourceType;
private String title;
private String type;
private NativeVariablesVariableVelocity variableVelocity;
private String xLabel;
private String yLabel;
private Builder() {
}
private Builder(NativeVariables model) {
this.code = model.code;
this.dataDisplay = model.dataDisplay;
this.defineId = model.defineId;
this.description = model.description;
this.displayType = model.displayType;
this.expressionTitle = model.expressionTitle;
this.favoriteFlag = model.favoriteFlag;
this.fieldDetail = model.fieldDetail;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.id = model.id;
this.inputFieldType = model.inputFieldType;
this.inputRequired = model.inputRequired;
this.inputs = model.inputs;
this.name = model.name;
this.outlier = model.outlier;
this.outputThreshold = model.outputThreshold;
this.parentName = model.parentName;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.variableVelocity = model.variableVelocity;
this.xLabel = model.xLabel;
this.yLabel = model.yLabel;
}
/**
* <p>variable code.</p>
*
* <strong>example:</strong>
* <p>age</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Data distribution display, in JSON format.</p>
*
* <strong>example:</strong>
* <p>{}</p>
*/
public Builder dataDisplay(String dataDisplay) {
this.dataDisplay = dataDisplay;
return this;
}
/**
* <p>Associated variable definition ID.</p>
*
* <strong>example:</strong>
* <p>register</p>
*/
public Builder defineId(String defineId) {
this.defineId = defineId;
return this;
}
/**
* <p>Variable description.</p>
*
* <strong>example:</strong>
* <p>描述</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Display type and group label.</p>
*
* <strong>example:</strong>
* <p>NATIVE</p>
*/
public Builder displayType(String displayType) {
this.displayType = displayType;
return this;
}
/**
* <p>Calculate expression display value.</p>
*
* <strong>example:</strong>
* <p>无</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>Favorite Identifier.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder favoriteFlag(Boolean favoriteFlag) {
this.favoriteFlag = favoriteFlag;
return this;
}
/**
* <p>Field pool field details.</p>
*
* <strong>example:</strong>
* <p>无</p>
*/
public Builder fieldDetail(String fieldDetail) {
this.fieldDetail = fieldDetail;
return this;
}
/**
* <p>Field Sorting.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder fieldRank(Integer fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>Variable source.</p>
*
* <strong>example:</strong>
* <p>DEFINE</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>Field type.</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Variable ID.</p>
*
* <strong>example:</strong>
* <p>223</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Input field type, indicating the type of input parameters, mainly used for function categorization.</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder inputFieldType(String inputFieldType) {
this.inputFieldType = inputFieldType;
return this;
}
/**
* <p>Required parameters.</p>
*
* <strong>example:</strong>
* <p>无</p>
*/
public Builder inputRequired(String inputRequired) {
this.inputRequired = inputRequired;
return this;
}
/**
* <p>Input of the variable. Event field is not present.</p>
*
* <strong>example:</strong>
* <p>无</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>variable name.</p>
*
* <strong>example:</strong>
* <p>age</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>outlier.</p>
*
* <strong>example:</strong>
* <p>无</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>Output score threshold.</p>
*/
public Builder outputThreshold(NativeVariablesOutputThreshold outputThreshold) {
this.outputThreshold = outputThreshold;
return this;
}
/**
* <p>Parent name.</p>
*
* <strong>example:</strong>
* <p>parentName</p>
*/
public Builder parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* <p>Variable source type.</p>
*
* <strong>example:</strong>
* <p>SAF</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>Variable name.</p>
*
* <strong>example:</strong>
* <p>年龄</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>Variable type.</p>
*
* <strong>example:</strong>
* <p>NATIVE</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>Variable indicator information.</p>
*/
public Builder variableVelocity(NativeVariablesVariableVelocity variableVelocity) {
this.variableVelocity = variableVelocity;
return this;
}
/**
* <p>x label.</p>
*
* <strong>example:</strong>
* <p>x</p>
*/
public Builder xLabel(String xLabel) {
this.xLabel = xLabel;
return this;
}
/**
* <p>y label.</p>
*
* <strong>example:</strong>
* <p>y</p>
*/
public Builder yLabel(String yLabel) {
this.yLabel = yLabel;
return this;
}
public NativeVariables build() {
return new NativeVariables(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class QueryVariablesOutputThreshold extends TeaModel {
@com.aliyun.core.annotation.NameInMap("maxValue")
private Double maxValue;
@com.aliyun.core.annotation.NameInMap("minValue")
private Double minValue;
private QueryVariablesOutputThreshold(Builder builder) {
this.maxValue = builder.maxValue;
this.minValue = builder.minValue;
}
public static Builder builder() {
return new Builder();
}
public static QueryVariablesOutputThreshold create() {
return builder().build();
}
/**
* @return maxValue
*/
public Double getMaxValue() {
return this.maxValue;
}
/**
* @return minValue
*/
public Double getMinValue() {
return this.minValue;
}
public static final class Builder {
private Double maxValue;
private Double minValue;
private Builder() {
}
private Builder(QueryVariablesOutputThreshold model) {
this.maxValue = model.maxValue;
this.minValue = model.minValue;
}
/**
* <p>The maximum value.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* <p>The minimum value.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder minValue(Double minValue) {
this.minValue = minValue;
return this;
}
public QueryVariablesOutputThreshold build() {
return new QueryVariablesOutputThreshold(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class QueryVariablesVariableVelocity extends TeaModel {
@com.aliyun.core.annotation.NameInMap("iv")
private String iv;
private QueryVariablesVariableVelocity(Builder builder) {
this.iv = builder.iv;
}
public static Builder builder() {
return new Builder();
}
public static QueryVariablesVariableVelocity create() {
return builder().build();
}
/**
* @return iv
*/
public String getIv() {
return this.iv;
}
public static final class Builder {
private String iv;
private Builder() {
}
private Builder(QueryVariablesVariableVelocity model) {
this.iv = model.iv;
}
/**
* <p>The IV value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder iv(String iv) {
this.iv = iv;
return this;
}
public QueryVariablesVariableVelocity build() {
return new QueryVariablesVariableVelocity(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class QueryVariables extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("dataDisplay")
private String dataDisplay;
@com.aliyun.core.annotation.NameInMap("defineId")
private String defineId;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("displayType")
private String displayType;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("favoriteFlag")
private Boolean favoriteFlag;
@com.aliyun.core.annotation.NameInMap("fieldDetail")
private String fieldDetail;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private Integer fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("inputFieldType")
private String inputFieldType;
@com.aliyun.core.annotation.NameInMap("inputRequired")
private String inputRequired;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputThreshold")
private QueryVariablesOutputThreshold outputThreshold;
@com.aliyun.core.annotation.NameInMap("parentName")
private String parentName;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("variableVelocity")
private QueryVariablesVariableVelocity variableVelocity;
@com.aliyun.core.annotation.NameInMap("xLabel")
private String xLabel;
@com.aliyun.core.annotation.NameInMap("yLabel")
private String yLabel;
private QueryVariables(Builder builder) {
this.code = builder.code;
this.dataDisplay = builder.dataDisplay;
this.defineId = builder.defineId;
this.description = builder.description;
this.displayType = builder.displayType;
this.expressionTitle = builder.expressionTitle;
this.favoriteFlag = builder.favoriteFlag;
this.fieldDetail = builder.fieldDetail;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.id = builder.id;
this.inputFieldType = builder.inputFieldType;
this.inputRequired = builder.inputRequired;
this.inputs = builder.inputs;
this.name = builder.name;
this.outlier = builder.outlier;
this.outputThreshold = builder.outputThreshold;
this.parentName = builder.parentName;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.variableVelocity = builder.variableVelocity;
this.xLabel = builder.xLabel;
this.yLabel = builder.yLabel;
}
public static Builder builder() {
return new Builder();
}
public static QueryVariables create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDisplay
*/
public String getDataDisplay() {
return this.dataDisplay;
}
/**
* @return defineId
*/
public String getDefineId() {
return this.defineId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayType
*/
public String getDisplayType() {
return this.displayType;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return favoriteFlag
*/
public Boolean getFavoriteFlag() {
return this.favoriteFlag;
}
/**
* @return fieldDetail
*/
public String getFieldDetail() {
return this.fieldDetail;
}
/**
* @return fieldRank
*/
public Integer getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return inputFieldType
*/
public String getInputFieldType() {
return this.inputFieldType;
}
/**
* @return inputRequired
*/
public String getInputRequired() {
return this.inputRequired;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputThreshold
*/
public QueryVariablesOutputThreshold getOutputThreshold() {
return this.outputThreshold;
}
/**
* @return parentName
*/
public String getParentName() {
return this.parentName;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return variableVelocity
*/
public QueryVariablesVariableVelocity getVariableVelocity() {
return this.variableVelocity;
}
/**
* @return xLabel
*/
public String getXLabel() {
return this.xLabel;
}
/**
* @return yLabel
*/
public String getYLabel() {
return this.yLabel;
}
public static final class Builder {
private String code;
private String dataDisplay;
private String defineId;
private String description;
private String displayType;
private String expressionTitle;
private Boolean favoriteFlag;
private String fieldDetail;
private Integer fieldRank;
private String fieldSource;
private String fieldType;
private Long id;
private String inputFieldType;
private String inputRequired;
private String inputs;
private String name;
private String outlier;
private QueryVariablesOutputThreshold outputThreshold;
private String parentName;
private String sourceType;
private String title;
private String type;
private QueryVariablesVariableVelocity variableVelocity;
private String xLabel;
private String yLabel;
private Builder() {
}
private Builder(QueryVariables model) {
this.code = model.code;
this.dataDisplay = model.dataDisplay;
this.defineId = model.defineId;
this.description = model.description;
this.displayType = model.displayType;
this.expressionTitle = model.expressionTitle;
this.favoriteFlag = model.favoriteFlag;
this.fieldDetail = model.fieldDetail;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.id = model.id;
this.inputFieldType = model.inputFieldType;
this.inputRequired = model.inputRequired;
this.inputs = model.inputs;
this.name = model.name;
this.outlier = model.outlier;
this.outputThreshold = model.outputThreshold;
this.parentName = model.parentName;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.variableVelocity = model.variableVelocity;
this.xLabel = model.xLabel;
this.yLabel = model.yLabel;
}
/**
* <p>The code of the query variable.</p>
*
* <strong>example:</strong>
* <p>deInvokeQueryVariable(376773)</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Data distribution display, in JSON format. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder dataDisplay(String dataDisplay) {
this.dataDisplay = dataDisplay;
return this;
}
/**
* <p>The definition ID of the query variable. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder defineId(String defineId) {
this.defineId = defineId;
return this;
}
/**
* <p>The description of the query variable.</p>
*
* <strong>example:</strong>
* <p>年龄计算</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>The display type and grouping label.</p>
*
* <strong>example:</strong>
* <p>QUERY_EXPRESSION</p>
*/
public Builder displayType(String displayType) {
this.displayType = displayType;
return this;
}
/**
* <p>The display value of the calculation expression. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>SELECT AVG( $source )\nFROM testCase\nWHERE $age > 0</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>The favorite flag.</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
public Builder favoriteFlag(Boolean favoriteFlag) {
this.favoriteFlag = favoriteFlag;
return this;
}
/**
* <p>The detailed information of the field in the field pool. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldDetail(String fieldDetail) {
this.fieldDetail = fieldDetail;
return this;
}
/**
* <p>The field rank.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder fieldRank(Integer fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>The source of the field. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>The type of the field.</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>The primary key ID of the query variable.</p>
*
* <strong>example:</strong>
* <p>3148</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>The input type of the parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputFieldType(String inputFieldType) {
this.inputFieldType = inputFieldType;
return this;
}
/**
* <p>The required parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputRequired(String inputRequired) {
this.inputRequired = inputRequired;
return this;
}
/**
* <p>Multiple input parameters separated by commas. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>The name of the query variable.</p>
*
* <strong>example:</strong>
* <p>ex_qWtKgCox350f</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>The outlier value.</p>
*
* <strong>example:</strong>
* <p>SYS_ERROR</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>The output value threshold.</p>
*/
public Builder outputThreshold(QueryVariablesOutputThreshold outputThreshold) {
this.outputThreshold = outputThreshold;
return this;
}
/**
* <p>The parent node. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* <p>The source type.</p>
*
* <strong>example:</strong>
* <p>DATA_SOURCE</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>The title of the query variable. The title of the query variable.</p>
*
* <strong>example:</strong>
* <p>年龄计算</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>The type of the query variable.</p>
*
* <strong>example:</strong>
* <p>QUERY_EXPRESSION</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>The variable metric information. This field is not returned for this type of variable.</p>
*/
public Builder variableVelocity(QueryVariablesVariableVelocity variableVelocity) {
this.variableVelocity = variableVelocity;
return this;
}
/**
* <p>The X label. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder xLabel(String xLabel) {
this.xLabel = xLabel;
return this;
}
/**
* <p>The Y label. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder yLabel(String yLabel) {
this.yLabel = yLabel;
return this;
}
public QueryVariables build() {
return new QueryVariables(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class SelfVariablesOutputThreshold extends TeaModel {
@com.aliyun.core.annotation.NameInMap("maxValue")
private Double maxValue;
@com.aliyun.core.annotation.NameInMap("minValue")
private Double minValue;
private SelfVariablesOutputThreshold(Builder builder) {
this.maxValue = builder.maxValue;
this.minValue = builder.minValue;
}
public static Builder builder() {
return new Builder();
}
public static SelfVariablesOutputThreshold create() {
return builder().build();
}
/**
* @return maxValue
*/
public Double getMaxValue() {
return this.maxValue;
}
/**
* @return minValue
*/
public Double getMinValue() {
return this.minValue;
}
public static final class Builder {
private Double maxValue;
private Double minValue;
private Builder() {
}
private Builder(SelfVariablesOutputThreshold model) {
this.maxValue = model.maxValue;
this.minValue = model.minValue;
}
/**
* <p>Maximum value.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* <p>Minimum value.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder minValue(Double minValue) {
this.minValue = minValue;
return this;
}
public SelfVariablesOutputThreshold build() {
return new SelfVariablesOutputThreshold(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class SelfVariablesVariableVelocity extends TeaModel {
@com.aliyun.core.annotation.NameInMap("iv")
private String iv;
private SelfVariablesVariableVelocity(Builder builder) {
this.iv = builder.iv;
}
public static Builder builder() {
return new Builder();
}
public static SelfVariablesVariableVelocity create() {
return builder().build();
}
/**
* @return iv
*/
public String getIv() {
return this.iv;
}
public static final class Builder {
private String iv;
private Builder() {
}
private Builder(SelfVariablesVariableVelocity model) {
this.iv = model.iv;
}
/**
* <p>iv value. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder iv(String iv) {
this.iv = iv;
return this;
}
public SelfVariablesVariableVelocity build() {
return new SelfVariablesVariableVelocity(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class SelfVariables extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("dataDisplay")
private String dataDisplay;
@com.aliyun.core.annotation.NameInMap("defineId")
private String defineId;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("displayType")
private String displayType;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("favoriteFlag")
private Boolean favoriteFlag;
@com.aliyun.core.annotation.NameInMap("fieldDetail")
private String fieldDetail;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private Integer fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("inputFieldType")
private String inputFieldType;
@com.aliyun.core.annotation.NameInMap("inputRequired")
private String inputRequired;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputThreshold")
private SelfVariablesOutputThreshold outputThreshold;
@com.aliyun.core.annotation.NameInMap("parentName")
private String parentName;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("variableVelocity")
private SelfVariablesVariableVelocity variableVelocity;
@com.aliyun.core.annotation.NameInMap("xLabel")
private String xLabel;
@com.aliyun.core.annotation.NameInMap("yLabel")
private String yLabel;
private SelfVariables(Builder builder) {
this.code = builder.code;
this.dataDisplay = builder.dataDisplay;
this.defineId = builder.defineId;
this.description = builder.description;
this.displayType = builder.displayType;
this.expressionTitle = builder.expressionTitle;
this.favoriteFlag = builder.favoriteFlag;
this.fieldDetail = builder.fieldDetail;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.id = builder.id;
this.inputFieldType = builder.inputFieldType;
this.inputRequired = builder.inputRequired;
this.inputs = builder.inputs;
this.name = builder.name;
this.outlier = builder.outlier;
this.outputThreshold = builder.outputThreshold;
this.parentName = builder.parentName;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.variableVelocity = builder.variableVelocity;
this.xLabel = builder.xLabel;
this.yLabel = builder.yLabel;
}
public static Builder builder() {
return new Builder();
}
public static SelfVariables create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDisplay
*/
public String getDataDisplay() {
return this.dataDisplay;
}
/**
* @return defineId
*/
public String getDefineId() {
return this.defineId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayType
*/
public String getDisplayType() {
return this.displayType;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return favoriteFlag
*/
public Boolean getFavoriteFlag() {
return this.favoriteFlag;
}
/**
* @return fieldDetail
*/
public String getFieldDetail() {
return this.fieldDetail;
}
/**
* @return fieldRank
*/
public Integer getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return inputFieldType
*/
public String getInputFieldType() {
return this.inputFieldType;
}
/**
* @return inputRequired
*/
public String getInputRequired() {
return this.inputRequired;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputThreshold
*/
public SelfVariablesOutputThreshold getOutputThreshold() {
return this.outputThreshold;
}
/**
* @return parentName
*/
public String getParentName() {
return this.parentName;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return variableVelocity
*/
public SelfVariablesVariableVelocity getVariableVelocity() {
return this.variableVelocity;
}
/**
* @return xLabel
*/
public String getXLabel() {
return this.xLabel;
}
/**
* @return yLabel
*/
public String getYLabel() {
return this.yLabel;
}
public static final class Builder {
private String code;
private String dataDisplay;
private String defineId;
private String description;
private String displayType;
private String expressionTitle;
private Boolean favoriteFlag;
private String fieldDetail;
private Integer fieldRank;
private String fieldSource;
private String fieldType;
private Long id;
private String inputFieldType;
private String inputRequired;
private String inputs;
private String name;
private String outlier;
private SelfVariablesOutputThreshold outputThreshold;
private String parentName;
private String sourceType;
private String title;
private String type;
private SelfVariablesVariableVelocity variableVelocity;
private String xLabel;
private String yLabel;
private Builder() {
}
private Builder(SelfVariables model) {
this.code = model.code;
this.dataDisplay = model.dataDisplay;
this.defineId = model.defineId;
this.description = model.description;
this.displayType = model.displayType;
this.expressionTitle = model.expressionTitle;
this.favoriteFlag = model.favoriteFlag;
this.fieldDetail = model.fieldDetail;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.id = model.id;
this.inputFieldType = model.inputFieldType;
this.inputRequired = model.inputRequired;
this.inputs = model.inputs;
this.name = model.name;
this.outlier = model.outlier;
this.outputThreshold = model.outputThreshold;
this.parentName = model.parentName;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.variableVelocity = model.variableVelocity;
this.xLabel = model.xLabel;
this.yLabel = model.yLabel;
}
/**
* <p>Variable code.</p>
*
* <strong>example:</strong>
* <p>deReadVelocity(hitRules,"dUd5ioJ8014",1,"MO",0,true,"SUM")</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Data distribution display, in JSON format. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder dataDisplay(String dataDisplay) {
this.dataDisplay = dataDisplay;
return this;
}
/**
* <p>Variable definition ID. Only returned for custom system variables.</p>
*
* <strong>example:</strong>
* <p>49</p>
*/
public Builder defineId(String defineId) {
this.defineId = defineId;
return this;
}
/**
* <p>Description of the variable.</p>
*
* <strong>example:</strong>
* <p>变量的描述信息</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Display type and group label.</p>
*
* <strong>example:</strong>
* <p>SELF_BIND</p>
*/
public Builder displayType(String displayType) {
this.displayType = displayType;
return this;
}
/**
* <p>Expression name.</p>
*
* <strong>example:</strong>
* <p>@IP地址</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>Favorite identifier.</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
public Builder favoriteFlag(Boolean favoriteFlag) {
this.favoriteFlag = favoriteFlag;
return this;
}
/**
* <p>Details of the field pool. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldDetail(String fieldDetail) {
this.fieldDetail = fieldDetail;
return this;
}
/**
* <p>Field sorting.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder fieldRank(Integer fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>Source of the field. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>Field type.</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Variable ID.</p>
*
* <strong>example:</strong>
* <p>3174</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>The input type of the parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputFieldType(String inputFieldType) {
this.inputFieldType = inputFieldType;
return this;
}
/**
* <p>Required parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputRequired(String inputRequired) {
this.inputRequired = inputRequired;
return this;
}
/**
* <p>Input parameters. Only returned when custom system variables are defined.</p>
*
* <strong>example:</strong>
* <p>ip</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>Variable name.</p>
*
* <strong>example:</strong>
* <p>ex_isvspbF2c7ac</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Anomaly value. Returned when the variable is a custom variable (type= EXPRESSION).</p>
*
* <strong>example:</strong>
* <p>-1</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>Output value threshold.</p>
*/
public Builder outputThreshold(SelfVariablesOutputThreshold outputThreshold) {
this.outputThreshold = outputThreshold;
return this;
}
/**
* <p>Parent node. This field is not returned currently.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* <p>Source type.</p>
*
* <strong>example:</strong>
* <p>SAF</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>获取手机号前七位</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>Variable type.</p>
*
* <strong>example:</strong>
* <p>EXPRESSION</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>Variable metric information. This field is not returned for this type of variable.</p>
*/
public Builder variableVelocity(SelfVariablesVariableVelocity variableVelocity) {
this.variableVelocity = variableVelocity;
return this;
}
/**
* <p>x label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder xLabel(String xLabel) {
this.xLabel = xLabel;
return this;
}
/**
* <p>y label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder yLabel(String yLabel) {
this.yLabel = yLabel;
return this;
}
public SelfVariables build() {
return new SelfVariables(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class SysVariablesOutputThreshold extends TeaModel {
@com.aliyun.core.annotation.NameInMap("maxValue")
private Double maxValue;
@com.aliyun.core.annotation.NameInMap("minValue")
private Double minValue;
private SysVariablesOutputThreshold(Builder builder) {
this.maxValue = builder.maxValue;
this.minValue = builder.minValue;
}
public static Builder builder() {
return new Builder();
}
public static SysVariablesOutputThreshold create() {
return builder().build();
}
/**
* @return maxValue
*/
public Double getMaxValue() {
return this.maxValue;
}
/**
* @return minValue
*/
public Double getMinValue() {
return this.minValue;
}
public static final class Builder {
private Double maxValue;
private Double minValue;
private Builder() {
}
private Builder(SysVariablesOutputThreshold model) {
this.maxValue = model.maxValue;
this.minValue = model.minValue;
}
/**
* <p>Maximum value.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* <p>Minimum value.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder minValue(Double minValue) {
this.minValue = minValue;
return this;
}
public SysVariablesOutputThreshold build() {
return new SysVariablesOutputThreshold(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class SysVariablesVariableVelocity extends TeaModel {
@com.aliyun.core.annotation.NameInMap("iv")
private String iv;
private SysVariablesVariableVelocity(Builder builder) {
this.iv = builder.iv;
}
public static Builder builder() {
return new Builder();
}
public static SysVariablesVariableVelocity create() {
return builder().build();
}
/**
* @return iv
*/
public String getIv() {
return this.iv;
}
public static final class Builder {
private String iv;
private Builder() {
}
private Builder(SysVariablesVariableVelocity model) {
this.iv = model.iv;
}
/**
* <p>iv value. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder iv(String iv) {
this.iv = iv;
return this;
}
public SysVariablesVariableVelocity build() {
return new SysVariablesVariableVelocity(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class SysVariables extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("dataDisplay")
private String dataDisplay;
@com.aliyun.core.annotation.NameInMap("defineId")
private String defineId;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("displayType")
private String displayType;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("favoriteFlag")
private Boolean favoriteFlag;
@com.aliyun.core.annotation.NameInMap("fieldDetail")
private String fieldDetail;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private Integer fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("inputFieldType")
private String inputFieldType;
@com.aliyun.core.annotation.NameInMap("inputRequired")
private String inputRequired;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputThreshold")
private SysVariablesOutputThreshold outputThreshold;
@com.aliyun.core.annotation.NameInMap("parentName")
private String parentName;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("variableVelocity")
private SysVariablesVariableVelocity variableVelocity;
@com.aliyun.core.annotation.NameInMap("xLabel")
private String xLabel;
@com.aliyun.core.annotation.NameInMap("yLabel")
private String yLabel;
private SysVariables(Builder builder) {
this.code = builder.code;
this.dataDisplay = builder.dataDisplay;
this.defineId = builder.defineId;
this.description = builder.description;
this.displayType = builder.displayType;
this.expressionTitle = builder.expressionTitle;
this.favoriteFlag = builder.favoriteFlag;
this.fieldDetail = builder.fieldDetail;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.id = builder.id;
this.inputFieldType = builder.inputFieldType;
this.inputRequired = builder.inputRequired;
this.inputs = builder.inputs;
this.name = builder.name;
this.outlier = builder.outlier;
this.outputThreshold = builder.outputThreshold;
this.parentName = builder.parentName;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.variableVelocity = builder.variableVelocity;
this.xLabel = builder.xLabel;
this.yLabel = builder.yLabel;
}
public static Builder builder() {
return new Builder();
}
public static SysVariables create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDisplay
*/
public String getDataDisplay() {
return this.dataDisplay;
}
/**
* @return defineId
*/
public String getDefineId() {
return this.defineId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayType
*/
public String getDisplayType() {
return this.displayType;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return favoriteFlag
*/
public Boolean getFavoriteFlag() {
return this.favoriteFlag;
}
/**
* @return fieldDetail
*/
public String getFieldDetail() {
return this.fieldDetail;
}
/**
* @return fieldRank
*/
public Integer getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return inputFieldType
*/
public String getInputFieldType() {
return this.inputFieldType;
}
/**
* @return inputRequired
*/
public String getInputRequired() {
return this.inputRequired;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputThreshold
*/
public SysVariablesOutputThreshold getOutputThreshold() {
return this.outputThreshold;
}
/**
* @return parentName
*/
public String getParentName() {
return this.parentName;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return variableVelocity
*/
public SysVariablesVariableVelocity getVariableVelocity() {
return this.variableVelocity;
}
/**
* @return xLabel
*/
public String getXLabel() {
return this.xLabel;
}
/**
* @return yLabel
*/
public String getYLabel() {
return this.yLabel;
}
public static final class Builder {
private String code;
private String dataDisplay;
private String defineId;
private String description;
private String displayType;
private String expressionTitle;
private Boolean favoriteFlag;
private String fieldDetail;
private Integer fieldRank;
private String fieldSource;
private String fieldType;
private Long id;
private String inputFieldType;
private String inputRequired;
private String inputs;
private String name;
private String outlier;
private SysVariablesOutputThreshold outputThreshold;
private String parentName;
private String sourceType;
private String title;
private String type;
private SysVariablesVariableVelocity variableVelocity;
private String xLabel;
private String yLabel;
private Builder() {
}
private Builder(SysVariables model) {
this.code = model.code;
this.dataDisplay = model.dataDisplay;
this.defineId = model.defineId;
this.description = model.description;
this.displayType = model.displayType;
this.expressionTitle = model.expressionTitle;
this.favoriteFlag = model.favoriteFlag;
this.fieldDetail = model.fieldDetail;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.id = model.id;
this.inputFieldType = model.inputFieldType;
this.inputRequired = model.inputRequired;
this.inputs = model.inputs;
this.name = model.name;
this.outlier = model.outlier;
this.outputThreshold = model.outputThreshold;
this.parentName = model.parentName;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.variableVelocity = model.variableVelocity;
this.xLabel = model.xLabel;
this.yLabel = model.yLabel;
}
/**
* <p>Variable code.</p>
*
* <strong>example:</strong>
* <p>parseIpV2(ip)?.cityId</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Data distribution display, in JSON format. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder dataDisplay(String dataDisplay) {
this.dataDisplay = dataDisplay;
return this;
}
/**
* <p>ID of the bound variable definition.</p>
*
* <strong>example:</strong>
* <p>2488</p>
*/
public Builder defineId(String defineId) {
this.defineId = defineId;
return this;
}
/**
* <p>Description of the variable.</p>
*
* <strong>example:</strong>
* <p>通过IP地址库解析IP所在的城市Code,例如,输入“42.120.74.211”,经过该变量运算,输出“330100”。</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Display type and group label.</p>
*
* <strong>example:</strong>
* <p>SYSTEM_BIND</p>
*/
public Builder displayType(String displayType) {
this.displayType = displayType;
return this;
}
/**
* <p>Calculate the expression display value. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>Favorite identifier.</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
public Builder favoriteFlag(Boolean favoriteFlag) {
this.favoriteFlag = favoriteFlag;
return this;
}
/**
* <p>Details of the field pool. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldDetail(String fieldDetail) {
this.fieldDetail = fieldDetail;
return this;
}
/**
* <p>Field sorting.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder fieldRank(Integer fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>Source of the field. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>Field type.</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Variable ID.</p>
*
* <strong>example:</strong>
* <p>3151</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Input type of the parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputFieldType(String inputFieldType) {
this.inputFieldType = inputFieldType;
return this;
}
/**
* <p>Required parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputRequired(String inputRequired) {
this.inputRequired = inputRequired;
return this;
}
/**
* <p>Variable value input.</p>
*
* <strong>example:</strong>
* <p>ip</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>Variable name.</p>
*
* <strong>example:</strong>
* <p><strong>ipLocationCityCode</strong></p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Outlier value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>Output value threshold.</p>
*/
public Builder outputThreshold(SysVariablesOutputThreshold outputThreshold) {
this.outputThreshold = outputThreshold;
return this;
}
/**
* <p>Parent name.</p>
*
* <strong>example:</strong>
* <p>无</p>
*/
public Builder parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* <p>Source type.</p>
*
* <strong>example:</strong>
* <p>SAF</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>IP所在地_城市Code</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>Variable type.</p>
*
* <strong>example:</strong>
* <p>SYSTEM_BIND</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>Variable metric information. This field is not returned for this type of variable.</p>
*/
public Builder variableVelocity(SysVariablesVariableVelocity variableVelocity) {
this.variableVelocity = variableVelocity;
return this;
}
/**
* <p>x label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder xLabel(String xLabel) {
this.xLabel = xLabel;
return this;
}
/**
* <p>y label. This type of variable does not return this field.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder yLabel(String yLabel) {
this.yLabel = yLabel;
return this;
}
public SysVariables build() {
return new SysVariables(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class VelocityVariablesOutputThreshold extends TeaModel {
@com.aliyun.core.annotation.NameInMap("maxValue")
private Double maxValue;
@com.aliyun.core.annotation.NameInMap("minValue")
private Double minValue;
private VelocityVariablesOutputThreshold(Builder builder) {
this.maxValue = builder.maxValue;
this.minValue = builder.minValue;
}
public static Builder builder() {
return new Builder();
}
public static VelocityVariablesOutputThreshold create() {
return builder().build();
}
/**
* @return maxValue
*/
public Double getMaxValue() {
return this.maxValue;
}
/**
* @return minValue
*/
public Double getMinValue() {
return this.minValue;
}
public static final class Builder {
private Double maxValue;
private Double minValue;
private Builder() {
}
private Builder(VelocityVariablesOutputThreshold model) {
this.maxValue = model.maxValue;
this.minValue = model.minValue;
}
/**
* <p>The maximum value.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* <p>The minimum value.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder minValue(Double minValue) {
this.minValue = minValue;
return this;
}
public VelocityVariablesOutputThreshold build() {
return new VelocityVariablesOutputThreshold(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class VelocityVariablesVariableVelocity extends TeaModel {
@com.aliyun.core.annotation.NameInMap("iv")
private String iv;
private VelocityVariablesVariableVelocity(Builder builder) {
this.iv = builder.iv;
}
public static Builder builder() {
return new Builder();
}
public static VelocityVariablesVariableVelocity create() {
return builder().build();
}
/**
* @return iv
*/
public String getIv() {
return this.iv;
}
public static final class Builder {
private String iv;
private Builder() {
}
private Builder(VelocityVariablesVariableVelocity model) {
this.iv = model.iv;
}
/**
* <p>The IV value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder iv(String iv) {
this.iv = iv;
return this;
}
public VelocityVariablesVariableVelocity build() {
return new VelocityVariablesVariableVelocity(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class VelocityVariables extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("dataDisplay")
private String dataDisplay;
@com.aliyun.core.annotation.NameInMap("defineId")
private String defineId;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("displayType")
private String displayType;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("favoriteFlag")
private Boolean favoriteFlag;
@com.aliyun.core.annotation.NameInMap("fieldDetail")
private String fieldDetail;
@com.aliyun.core.annotation.NameInMap("fieldRank")
private Integer fieldRank;
@com.aliyun.core.annotation.NameInMap("fieldSource")
private String fieldSource;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("inputFieldType")
private String inputFieldType;
@com.aliyun.core.annotation.NameInMap("inputRequired")
private String inputRequired;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputThreshold")
private VelocityVariablesOutputThreshold outputThreshold;
@com.aliyun.core.annotation.NameInMap("parentName")
private String parentName;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("variableVelocity")
private VelocityVariablesVariableVelocity variableVelocity;
@com.aliyun.core.annotation.NameInMap("xLabel")
private String xLabel;
@com.aliyun.core.annotation.NameInMap("yLabel")
private String yLabel;
private VelocityVariables(Builder builder) {
this.code = builder.code;
this.dataDisplay = builder.dataDisplay;
this.defineId = builder.defineId;
this.description = builder.description;
this.displayType = builder.displayType;
this.expressionTitle = builder.expressionTitle;
this.favoriteFlag = builder.favoriteFlag;
this.fieldDetail = builder.fieldDetail;
this.fieldRank = builder.fieldRank;
this.fieldSource = builder.fieldSource;
this.fieldType = builder.fieldType;
this.id = builder.id;
this.inputFieldType = builder.inputFieldType;
this.inputRequired = builder.inputRequired;
this.inputs = builder.inputs;
this.name = builder.name;
this.outlier = builder.outlier;
this.outputThreshold = builder.outputThreshold;
this.parentName = builder.parentName;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.variableVelocity = builder.variableVelocity;
this.xLabel = builder.xLabel;
this.yLabel = builder.yLabel;
}
public static Builder builder() {
return new Builder();
}
public static VelocityVariables create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return dataDisplay
*/
public String getDataDisplay() {
return this.dataDisplay;
}
/**
* @return defineId
*/
public String getDefineId() {
return this.defineId;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return displayType
*/
public String getDisplayType() {
return this.displayType;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return favoriteFlag
*/
public Boolean getFavoriteFlag() {
return this.favoriteFlag;
}
/**
* @return fieldDetail
*/
public String getFieldDetail() {
return this.fieldDetail;
}
/**
* @return fieldRank
*/
public Integer getFieldRank() {
return this.fieldRank;
}
/**
* @return fieldSource
*/
public String getFieldSource() {
return this.fieldSource;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return inputFieldType
*/
public String getInputFieldType() {
return this.inputFieldType;
}
/**
* @return inputRequired
*/
public String getInputRequired() {
return this.inputRequired;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputThreshold
*/
public VelocityVariablesOutputThreshold getOutputThreshold() {
return this.outputThreshold;
}
/**
* @return parentName
*/
public String getParentName() {
return this.parentName;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return variableVelocity
*/
public VelocityVariablesVariableVelocity getVariableVelocity() {
return this.variableVelocity;
}
/**
* @return xLabel
*/
public String getXLabel() {
return this.xLabel;
}
/**
* @return yLabel
*/
public String getYLabel() {
return this.yLabel;
}
public static final class Builder {
private String code;
private String dataDisplay;
private String defineId;
private String description;
private String displayType;
private String expressionTitle;
private Boolean favoriteFlag;
private String fieldDetail;
private Integer fieldRank;
private String fieldSource;
private String fieldType;
private Long id;
private String inputFieldType;
private String inputRequired;
private String inputs;
private String name;
private String outlier;
private VelocityVariablesOutputThreshold outputThreshold;
private String parentName;
private String sourceType;
private String title;
private String type;
private VelocityVariablesVariableVelocity variableVelocity;
private String xLabel;
private String yLabel;
private Builder() {
}
private Builder(VelocityVariables model) {
this.code = model.code;
this.dataDisplay = model.dataDisplay;
this.defineId = model.defineId;
this.description = model.description;
this.displayType = model.displayType;
this.expressionTitle = model.expressionTitle;
this.favoriteFlag = model.favoriteFlag;
this.fieldDetail = model.fieldDetail;
this.fieldRank = model.fieldRank;
this.fieldSource = model.fieldSource;
this.fieldType = model.fieldType;
this.id = model.id;
this.inputFieldType = model.inputFieldType;
this.inputRequired = model.inputRequired;
this.inputs = model.inputs;
this.name = model.name;
this.outlier = model.outlier;
this.outputThreshold = model.outputThreshold;
this.parentName = model.parentName;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.variableVelocity = model.variableVelocity;
this.xLabel = model.xLabel;
this.yLabel = model.yLabel;
}
/**
* <p>The code of the variable.</p>
*
* <strong>example:</strong>
* <p>deReadVelocity(userId,"hFsEFUEe88a",1,"H",0,true,"COUNT")</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Data distribution display, in JSON format. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder dataDisplay(String dataDisplay) {
this.dataDisplay = dataDisplay;
return this;
}
/**
* <p>The definition ID of the variable. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder defineId(String defineId) {
this.defineId = defineId;
return this;
}
/**
* <p>The description of the variable.</p>
*
* <strong>example:</strong>
* <p>累计用户省份次数。</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>The display type and grouping label.</p>
*
* <strong>example:</strong>
* <p>SELF_VELOCITY</p>
*/
public Builder displayType(String displayType) {
this.displayType = displayType;
return this;
}
/**
* <p>The display value of the calculation expression. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>The favorite flag.</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
public Builder favoriteFlag(Boolean favoriteFlag) {
this.favoriteFlag = favoriteFlag;
return this;
}
/**
* <p>The detailed information of the field in the field pool. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldDetail(String fieldDetail) {
this.fieldDetail = fieldDetail;
return this;
}
/**
* <p>The field rank.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
public Builder fieldRank(Integer fieldRank) {
this.fieldRank = fieldRank;
return this;
}
/**
* <p>The source of the field. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder fieldSource(String fieldSource) {
this.fieldSource = fieldSource;
return this;
}
/**
* <p>The type of the field.</p>
*
* <strong>example:</strong>
* <p>DOUBLE</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>The primary key ID.</p>
*
* <strong>example:</strong>
* <p>3148</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>The input type of the parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputFieldType(String inputFieldType) {
this.inputFieldType = inputFieldType;
return this;
}
/**
* <p>The required parameter. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputRequired(String inputRequired) {
this.inputRequired = inputRequired;
return this;
}
/**
* <p>Multiple input parameters separated by commas. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>The name of the variable.</p>
*
* <strong>example:</strong>
* <p>hFsEFUEe88a</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>The outlier value. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>The output value threshold.</p>
*/
public Builder outputThreshold(VelocityVariablesOutputThreshold outputThreshold) {
this.outputThreshold = outputThreshold;
return this;
}
/**
* <p>The parent node. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* <p>The source type.</p>
*
* <strong>example:</strong>
* <p>SAF_SELF</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>The title of the variable.</p>
*
* <strong>example:</strong>
* <p>累计用户省份次数</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>The type of the variable.</p>
*
* <strong>example:</strong>
* <p>SELF_VELOCITY</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>The variable metric information. This field is not returned for this type of variable.</p>
*/
public Builder variableVelocity(VelocityVariablesVariableVelocity variableVelocity) {
this.variableVelocity = variableVelocity;
return this;
}
/**
* <p>The X label. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder xLabel(String xLabel) {
this.xLabel = xLabel;
return this;
}
/**
* <p>The Y label. This field is not returned for this type of variable.</p>
*
* <strong>example:</strong>
* <p>This type does not have this field</p>
*/
public Builder yLabel(String yLabel) {
this.yLabel = yLabel;
return this;
}
public VelocityVariables build() {
return new VelocityVariables(this);
}
}
}
/**
*
* {@link DescribeEventVariableListResponseBody} extends {@link TeaModel}
*
* <p>DescribeEventVariableListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("actions")
private java.util.List<Actions> actions;
@com.aliyun.core.annotation.NameInMap("deviceVariables")
private java.util.List<DeviceVariables> deviceVariables;
@com.aliyun.core.annotation.NameInMap("expressionVariables")
private java.util.List<ExpressionVariables> expressionVariables;
@com.aliyun.core.annotation.NameInMap("favoriteVariables")
private java.util.List<FavoriteVariables> favoriteVariables;
@com.aliyun.core.annotation.NameInMap("middleVariables")
private java.util.List<MiddleVariables> middleVariables;
@com.aliyun.core.annotation.NameInMap("modelVariables")
private java.util.List<ModelVariables> modelVariables;
@com.aliyun.core.annotation.NameInMap("nameList")
private java.util.List<NameList> nameList;
@com.aliyun.core.annotation.NameInMap("nativeVariableFunctions")
private java.util.List<NativeVariableFunctions> nativeVariableFunctions;
@com.aliyun.core.annotation.NameInMap("nativeVariables")
private java.util.List<NativeVariables> nativeVariables;
@com.aliyun.core.annotation.NameInMap("queryVariables")
private java.util.List<QueryVariables> queryVariables;
@com.aliyun.core.annotation.NameInMap("selfVariables")
private java.util.List<SelfVariables> selfVariables;
@com.aliyun.core.annotation.NameInMap("sysVariables")
private java.util.List<SysVariables> sysVariables;
@com.aliyun.core.annotation.NameInMap("thirdVariables")
private java.util.Map<String, ?> thirdVariables;
@com.aliyun.core.annotation.NameInMap("velocityVariables")
private java.util.List<VelocityVariables> velocityVariables;
private ResultObject(Builder builder) {
this.actions = builder.actions;
this.deviceVariables = builder.deviceVariables;
this.expressionVariables = builder.expressionVariables;
this.favoriteVariables = builder.favoriteVariables;
this.middleVariables = builder.middleVariables;
this.modelVariables = builder.modelVariables;
this.nameList = builder.nameList;
this.nativeVariableFunctions = builder.nativeVariableFunctions;
this.nativeVariables = builder.nativeVariables;
this.queryVariables = builder.queryVariables;
this.selfVariables = builder.selfVariables;
this.sysVariables = builder.sysVariables;
this.thirdVariables = builder.thirdVariables;
this.velocityVariables = builder.velocityVariables;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return actions
*/
public java.util.List<Actions> getActions() {
return this.actions;
}
/**
* @return deviceVariables
*/
public java.util.List<DeviceVariables> getDeviceVariables() {
return this.deviceVariables;
}
/**
* @return expressionVariables
*/
public java.util.List<ExpressionVariables> getExpressionVariables() {
return this.expressionVariables;
}
/**
* @return favoriteVariables
*/
public java.util.List<FavoriteVariables> getFavoriteVariables() {
return this.favoriteVariables;
}
/**
* @return middleVariables
*/
public java.util.List<MiddleVariables> getMiddleVariables() {
return this.middleVariables;
}
/**
* @return modelVariables
*/
public java.util.List<ModelVariables> getModelVariables() {
return this.modelVariables;
}
/**
* @return nameList
*/
public java.util.List<NameList> getNameList() {
return this.nameList;
}
/**
* @return nativeVariableFunctions
*/
public java.util.List<NativeVariableFunctions> getNativeVariableFunctions() {
return this.nativeVariableFunctions;
}
/**
* @return nativeVariables
*/
public java.util.List<NativeVariables> getNativeVariables() {
return this.nativeVariables;
}
/**
* @return queryVariables
*/
public java.util.List<QueryVariables> getQueryVariables() {
return this.queryVariables;
}
/**
* @return selfVariables
*/
public java.util.List<SelfVariables> getSelfVariables() {
return this.selfVariables;
}
/**
* @return sysVariables
*/
public java.util.List<SysVariables> getSysVariables() {
return this.sysVariables;
}
/**
* @return thirdVariables
*/
public java.util.Map<String, ?> getThirdVariables() {
return this.thirdVariables;
}
/**
* @return velocityVariables
*/
public java.util.List<VelocityVariables> getVelocityVariables() {
return this.velocityVariables;
}
public static final class Builder {
private java.util.List<Actions> actions;
private java.util.List<DeviceVariables> deviceVariables;
private java.util.List<ExpressionVariables> expressionVariables;
private java.util.List<FavoriteVariables> favoriteVariables;
private java.util.List<MiddleVariables> middleVariables;
private java.util.List<ModelVariables> modelVariables;
private java.util.List<NameList> nameList;
private java.util.List<NativeVariableFunctions> nativeVariableFunctions;
private java.util.List<NativeVariables> nativeVariables;
private java.util.List<QueryVariables> queryVariables;
private java.util.List<SelfVariables> selfVariables;
private java.util.List<SysVariables> sysVariables;
private java.util.Map<String, ?> thirdVariables;
private java.util.List<VelocityVariables> velocityVariables;
private Builder() {
}
private Builder(ResultObject model) {
this.actions = model.actions;
this.deviceVariables = model.deviceVariables;
this.expressionVariables = model.expressionVariables;
this.favoriteVariables = model.favoriteVariables;
this.middleVariables = model.middleVariables;
this.modelVariables = model.modelVariables;
this.nameList = model.nameList;
this.nativeVariableFunctions = model.nativeVariableFunctions;
this.nativeVariables = model.nativeVariables;
this.queryVariables = model.queryVariables;
this.selfVariables = model.selfVariables;
this.sysVariables = model.sysVariables;
this.thirdVariables = model.thirdVariables;
this.velocityVariables = model.velocityVariables;
}
/**
* <p>Action variable.</p>
*/
public Builder actions(java.util.List<Actions> actions) {
this.actions = actions;
return this;
}
/**
* <p>Device variable.</p>
*/
public Builder deviceVariables(java.util.List<DeviceVariables> deviceVariables) {
this.deviceVariables = deviceVariables;
return this;
}
/**
* <p>Custom variable.</p>
*/
public Builder expressionVariables(java.util.List<ExpressionVariables> expressionVariables) {
this.expressionVariables = expressionVariables;
return this;
}
/**
* <p>Favorite variables.</p>
*/
public Builder favoriteVariables(java.util.List<FavoriteVariables> favoriteVariables) {
this.favoriteVariables = favoriteVariables;
return this;
}
/**
* <p>Intermediate variable return object.</p>
*/
public Builder middleVariables(java.util.List<MiddleVariables> middleVariables) {
this.middleVariables = middleVariables;
return this;
}
/**
* <p>An array of model variables.</p>
*/
public Builder modelVariables(java.util.List<ModelVariables> modelVariables) {
this.modelVariables = modelVariables;
return this;
}
/**
* <p>List of name variables.</p>
*/
public Builder nameList(java.util.List<NameList> nameList) {
this.nameList = nameList;
return this;
}
/**
* <p>List of available functions for the original variable.</p>
*/
public Builder nativeVariableFunctions(java.util.List<NativeVariableFunctions> nativeVariableFunctions) {
this.nativeVariableFunctions = nativeVariableFunctions;
return this;
}
/**
* <p>List of event fields.</p>
*/
public Builder nativeVariables(java.util.List<NativeVariables> nativeVariables) {
this.nativeVariables = nativeVariables;
return this;
}
/**
* <p>An array of custom query variables.</p>
*/
public Builder queryVariables(java.util.List<QueryVariables> queryVariables) {
this.queryVariables = queryVariables;
return this;
}
/**
* <p>Custom variables (custom variables, cumulative variables, custom system variables).</p>
*/
public Builder selfVariables(java.util.List<SelfVariables> selfVariables) {
this.selfVariables = selfVariables;
return this;
}
/**
* <p>System variables.</p>
*/
public Builder sysVariables(java.util.List<SysVariables> sysVariables) {
this.sysVariables = sysVariables;
return this;
}
/**
* <p>Other related variables.</p>
*
* <strong>example:</strong>
* <p>{}</p>
*/
public Builder thirdVariables(java.util.Map<String, ?> thirdVariables) {
this.thirdVariables = thirdVariables;
return this;
}
/**
* <p>An array of accumulated variables.</p>
*/
public Builder velocityVariables(java.util.List<VelocityVariables> velocityVariables) {
this.velocityVariables = velocityVariables;
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/DescribeEventVariableTemplateBindRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeEventVariableTemplateBindRequest} extends {@link RequestModel}
*
* <p>DescribeEventVariableTemplateBindRequest</p>
*/
public class DescribeEventVariableTemplateBindRequest 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("inputs")
@com.aliyun.core.annotation.Validation(required = true)
private String inputs;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("templateCode")
private String templateCode;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("type")
@com.aliyun.core.annotation.Validation(required = true)
private String type;
private DescribeEventVariableTemplateBindRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.inputs = builder.inputs;
this.regId = builder.regId;
this.templateCode = builder.templateCode;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static DescribeEventVariableTemplateBindRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return templateCode
*/
public String getTemplateCode() {
return this.templateCode;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
public static final class Builder extends Request.Builder<DescribeEventVariableTemplateBindRequest, Builder> {
private String lang;
private String inputs;
private String regId;
private String templateCode;
private String type;
private Builder() {
super();
}
private Builder(DescribeEventVariableTemplateBindRequest request) {
super(request);
this.lang = request.lang;
this.inputs = request.inputs;
this.regId = request.regId;
this.templateCode = request.templateCode;
this.type = request.type;
}
/**
* <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>Input parameters, separated by commas if multiple.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>age,ip</p>
*/
public Builder inputs(String inputs) {
this.putQueryParameter("inputs", inputs);
this.inputs = inputs;
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>Template code.</p>
*
* <strong>example:</strong>
* <p>register</p>
*/
public Builder templateCode(String templateCode) {
this.putQueryParameter("templateCode", templateCode);
this.templateCode = templateCode;
return this;
}
/**
* <p>Type</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>NATIVE</p>
*/
public Builder type(String type) {
this.putQueryParameter("type", type);
this.type = type;
return this;
}
@Override
public DescribeEventVariableTemplateBindRequest build() {
return new DescribeEventVariableTemplateBindRequest(this);
}
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.