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/DescribeEventVariableTemplateBindResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEventVariableTemplateBindResponse} extends {@link TeaModel} * * <p>DescribeEventVariableTemplateBindResponse</p> */ public class DescribeEventVariableTemplateBindResponse 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 DescribeEventVariableTemplateBindResponseBody body; private DescribeEventVariableTemplateBindResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeEventVariableTemplateBindResponse 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 DescribeEventVariableTemplateBindResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeEventVariableTemplateBindResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeEventVariableTemplateBindResponseBody body); @Override DescribeEventVariableTemplateBindResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeEventVariableTemplateBindResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeEventVariableTemplateBindResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeEventVariableTemplateBindResponse 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(DescribeEventVariableTemplateBindResponseBody body) { this.body = body; return this; } @Override public DescribeEventVariableTemplateBindResponse build() { return new DescribeEventVariableTemplateBindResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventVariableTemplateBindResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEventVariableTemplateBindResponseBody} extends {@link TeaModel} * * <p>DescribeEventVariableTemplateBindResponseBody</p> */ public class DescribeEventVariableTemplateBindResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeEventVariableTemplateBindResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeEventVariableTemplateBindResponseBody 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(DescribeEventVariableTemplateBindResponseBody 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 DescribeEventVariableTemplateBindResponseBody build() { return new DescribeEventVariableTemplateBindResponseBody(this); } } /** * * {@link DescribeEventVariableTemplateBindResponseBody} extends {@link TeaModel} * * <p>DescribeEventVariableTemplateBindResponseBody</p> */ public static class ChargeVariables extends TeaModel { @com.aliyun.core.annotation.NameInMap("code") private String code; @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("fieldType") private String fieldType; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("title") private String title; @com.aliyun.core.annotation.NameInMap("type") private String type; private ChargeVariables(Builder builder) { this.code = builder.code; this.description = builder.description; this.fieldType = builder.fieldType; this.id = builder.id; this.name = builder.name; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static ChargeVariables create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return description */ public String getDescription() { return this.description; } /** * @return fieldType */ public String getFieldType() { return this.fieldType; } /** * @return id */ public Long getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String code; private String description; private String fieldType; private Long id; private String name; private String title; private String type; private Builder() { } private Builder(ChargeVariables model) { this.code = model.code; this.description = model.description; this.fieldType = model.fieldType; this.id = model.id; this.name = model.name; this.title = model.title; this.type = model.type; } /** * <p>Variable code</p> * * <strong>example:</strong> * <p>ip</p> */ public Builder code(String code) { this.code = code; return this; } /** * <p>Description of the variable.</p> * * <strong>example:</strong> * <p>描述</p> */ public Builder description(String description) { this.description = description; 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>456</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Variable name</p> * * <strong>example:</strong> * <p>ip</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Title.</p> * * <strong>example:</strong> * <p>ip</p> */ public Builder title(String title) { this.title = title; return this; } /** * <p>Variable type.</p> * * <strong>example:</strong> * <p>NATIVE</p> */ public Builder type(String type) { this.type = type; return this; } public ChargeVariables build() { return new ChargeVariables(this); } } } /** * * {@link DescribeEventVariableTemplateBindResponseBody} extends {@link TeaModel} * * <p>DescribeEventVariableTemplateBindResponseBody</p> */ public static class FreeVariables extends TeaModel { @com.aliyun.core.annotation.NameInMap("code") private String code; @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("fieldType") private String fieldType; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("title") private String title; @com.aliyun.core.annotation.NameInMap("type") private String type; private FreeVariables(Builder builder) { this.code = builder.code; this.description = builder.description; this.fieldType = builder.fieldType; this.id = builder.id; this.name = builder.name; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static FreeVariables create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return description */ public String getDescription() { return this.description; } /** * @return fieldType */ public String getFieldType() { return this.fieldType; } /** * @return id */ public Long getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String code; private String description; private String fieldType; private Long id; private String name; private String title; private String type; private Builder() { } private Builder(FreeVariables model) { this.code = model.code; this.description = model.description; this.fieldType = model.fieldType; this.id = model.id; this.name = model.name; this.title = model.title; this.type = model.type; } /** * <p>Variable code</p> * * <strong>example:</strong> * <p>age</p> */ public Builder code(String code) { this.code = code; return this; } /** * <p>Variable description.</p> * * <strong>example:</strong> * <p>描述</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>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>234</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Variable name</p> * * <strong>example:</strong> * <p>age</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Title.</p> * * <strong>example:</strong> * <p>年龄</p> */ public Builder title(String title) { this.title = title; return this; } /** * <p>Variable type.</p> * * <strong>example:</strong> * <p>NATIVE</p> */ public Builder type(String type) { this.type = type; return this; } public FreeVariables build() { return new FreeVariables(this); } } } /** * * {@link DescribeEventVariableTemplateBindResponseBody} extends {@link TeaModel} * * <p>DescribeEventVariableTemplateBindResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("chargeVariables") private java.util.List<ChargeVariables> chargeVariables; @com.aliyun.core.annotation.NameInMap("freeVariables") private java.util.List<FreeVariables> freeVariables; @com.aliyun.core.annotation.NameInMap("templateCode") private String templateCode; @com.aliyun.core.annotation.NameInMap("totalCount") private String totalCount; private ResultObject(Builder builder) { this.chargeVariables = builder.chargeVariables; this.freeVariables = builder.freeVariables; this.templateCode = builder.templateCode; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return chargeVariables */ public java.util.List<ChargeVariables> getChargeVariables() { return this.chargeVariables; } /** * @return freeVariables */ public java.util.List<FreeVariables> getFreeVariables() { return this.freeVariables; } /** * @return templateCode */ public String getTemplateCode() { return this.templateCode; } /** * @return totalCount */ public String getTotalCount() { return this.totalCount; } public static final class Builder { private java.util.List<ChargeVariables> chargeVariables; private java.util.List<FreeVariables> freeVariables; private String templateCode; private String totalCount; private Builder() { } private Builder(ResultObject model) { this.chargeVariables = model.chargeVariables; this.freeVariables = model.freeVariables; this.templateCode = model.templateCode; this.totalCount = model.totalCount; } /** * <p>List of chargeable variables</p> */ public Builder chargeVariables(java.util.List<ChargeVariables> chargeVariables) { this.chargeVariables = chargeVariables; return this; } /** * <p>List of free variables</p> */ public Builder freeVariables(java.util.List<FreeVariables> freeVariables) { this.freeVariables = freeVariables; return this; } /** * <p>Template code</p> * * <strong>example:</strong> * <p>register</p> */ public Builder templateCode(String templateCode) { this.templateCode = templateCode; return this; } /** * <p>Total count</p> * * <strong>example:</strong> * <p>38</p> */ public Builder totalCount(String totalCount) { this.totalCount = totalCount; 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/DescribeEventVariableTemplateListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEventVariableTemplateListRequest} extends {@link RequestModel} * * <p>DescribeEventVariableTemplateListRequest</p> */ public class DescribeEventVariableTemplateListRequest 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") 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") private String type; private DescribeEventVariableTemplateListRequest(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 DescribeEventVariableTemplateListRequest 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<DescribeEventVariableTemplateListRequest, Builder> { private String lang; private String inputs; private String regId; private String templateCode; private String type; private Builder() { super(); } private Builder(DescribeEventVariableTemplateListRequest 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 the request and response messages. The 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.</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>Template type.</p> * * <strong>example:</strong> * <p>NATIVE</p> */ public Builder type(String type) { this.putQueryParameter("type", type); this.type = type; return this; } @Override public DescribeEventVariableTemplateListRequest build() { return new DescribeEventVariableTemplateListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventVariableTemplateListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEventVariableTemplateListResponse} extends {@link TeaModel} * * <p>DescribeEventVariableTemplateListResponse</p> */ public class DescribeEventVariableTemplateListResponse 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 DescribeEventVariableTemplateListResponseBody body; private DescribeEventVariableTemplateListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeEventVariableTemplateListResponse 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 DescribeEventVariableTemplateListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeEventVariableTemplateListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeEventVariableTemplateListResponseBody body); @Override DescribeEventVariableTemplateListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeEventVariableTemplateListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeEventVariableTemplateListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeEventVariableTemplateListResponse 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(DescribeEventVariableTemplateListResponseBody body) { this.body = body; return this; } @Override public DescribeEventVariableTemplateListResponse build() { return new DescribeEventVariableTemplateListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventVariableTemplateListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEventVariableTemplateListResponseBody} extends {@link TeaModel} * * <p>DescribeEventVariableTemplateListResponseBody</p> */ public class DescribeEventVariableTemplateListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeEventVariableTemplateListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeEventVariableTemplateListResponseBody 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(DescribeEventVariableTemplateListResponseBody 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 DescribeEventVariableTemplateListResponseBody build() { return new DescribeEventVariableTemplateListResponseBody(this); } } /** * * {@link DescribeEventVariableTemplateListResponseBody} extends {@link TeaModel} * * <p>DescribeEventVariableTemplateListResponseBody</p> */ public static class Variables extends TeaModel { @com.aliyun.core.annotation.NameInMap("code") private String code; @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("fieldType") private String fieldType; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("title") private String title; @com.aliyun.core.annotation.NameInMap("type") private String type; private Variables(Builder builder) { this.code = builder.code; this.description = builder.description; this.fieldType = builder.fieldType; this.id = builder.id; this.name = builder.name; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Variables create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return description */ public String getDescription() { return this.description; } /** * @return fieldType */ public String getFieldType() { return this.fieldType; } /** * @return id */ public Long getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String code; private String description; private String fieldType; private Long id; private String name; private String title; private String type; private Builder() { } private Builder(Variables model) { this.code = model.code; this.description = model.description; this.fieldType = model.fieldType; this.id = model.id; this.name = model.name; this.title = model.title; this.type = model.type; } /** * <p>Variable code</p> * * <strong>example:</strong> * <p>age</p> */ public Builder code(String code) { this.code = code; return this; } /** * <p>Description information.</p> * * <strong>example:</strong> * <p>描述</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Variable input 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>454</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Variable name</p> * * <strong>example:</strong> * <p>age</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Title.</p> * * <strong>example:</strong> * <p>年龄</p> */ public Builder title(String title) { this.title = title; return this; } /** * <p>Variable type.</p> * * <strong>example:</strong> * <p>NATIVE</p> */ public Builder type(String type) { this.type = type; return this; } public Variables build() { return new Variables(this); } } } /** * * {@link DescribeEventVariableTemplateListResponseBody} extends {@link TeaModel} * * <p>DescribeEventVariableTemplateListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("templateCode") private String templateCode; @com.aliyun.core.annotation.NameInMap("templateName") private String templateName; @com.aliyun.core.annotation.NameInMap("variables") private java.util.List<Variables> variables; private ResultObject(Builder builder) { this.templateCode = builder.templateCode; this.templateName = builder.templateName; this.variables = builder.variables; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return templateCode */ public String getTemplateCode() { return this.templateCode; } /** * @return templateName */ public String getTemplateName() { return this.templateName; } /** * @return variables */ public java.util.List<Variables> getVariables() { return this.variables; } public static final class Builder { private String templateCode; private String templateName; private java.util.List<Variables> variables; private Builder() { } private Builder(ResultObject model) { this.templateCode = model.templateCode; this.templateName = model.templateName; this.variables = model.variables; } /** * <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>Variable list.</p> */ public Builder variables(java.util.List<Variables> variables) { this.variables = variables; 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/DescribeEventsVariableListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEventsVariableListRequest} extends {@link RequestModel} * * <p>DescribeEventsVariableListRequest</p> */ public class DescribeEventsVariableListRequest 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("eventCodes") @com.aliyun.core.annotation.Validation(required = true) private String eventCodes; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("filterDTO") private String filterDTO; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("scene") @com.aliyun.core.annotation.Validation(required = true) private String scene; private DescribeEventsVariableListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.createType = builder.createType; this.eventCodes = builder.eventCodes; this.filterDTO = builder.filterDTO; this.regId = builder.regId; this.scene = builder.scene; } public static Builder builder() { return new Builder(); } public static DescribeEventsVariableListRequest 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 eventCodes */ public String getEventCodes() { return this.eventCodes; } /** * @return filterDTO */ public String getFilterDTO() { return this.filterDTO; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return scene */ public String getScene() { return this.scene; } public static final class Builder extends Request.Builder<DescribeEventsVariableListRequest, Builder> { private String lang; private String createType; private String eventCodes; private String filterDTO; private String regId; private String scene; private Builder() { super(); } private Builder(DescribeEventsVariableListRequest request) { super(request); this.lang = request.lang; this.createType = request.createType; this.eventCodes = request.eventCodes; this.filterDTO = request.filterDTO; this.regId = request.regId; this.scene = request.scene; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>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> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>de_afghcf6411</p> */ public Builder eventCodes(String eventCodes) { this.putQueryParameter("eventCodes", eventCodes); this.eventCodes = eventCodes; return this; } /** * <p>Filter object</p> * * <strong>example:</strong> * <p>{&quot;type&quot;:&quot;EXPRESSION&quot;,&quot;name&quot;:&quot;ex_NgR6nDVD821c&quot;}</p> */ public Builder filterDTO(String filterDTO) { this.putQueryParameter("filterDTO", filterDTO); this.filterDTO = filterDTO; 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>Applicable scene code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>VELOCITY</p> */ public Builder scene(String scene) { this.putQueryParameter("scene", scene); this.scene = scene; return this; } @Override public DescribeEventsVariableListRequest build() { return new DescribeEventsVariableListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventsVariableListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEventsVariableListResponse} extends {@link TeaModel} * * <p>DescribeEventsVariableListResponse</p> */ public class DescribeEventsVariableListResponse 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 DescribeEventsVariableListResponseBody body; private DescribeEventsVariableListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeEventsVariableListResponse 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 DescribeEventsVariableListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeEventsVariableListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeEventsVariableListResponseBody body); @Override DescribeEventsVariableListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeEventsVariableListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeEventsVariableListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeEventsVariableListResponse 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(DescribeEventsVariableListResponseBody body) { this.body = body; return this; } @Override public DescribeEventsVariableListResponse build() { return new DescribeEventsVariableListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeEventsVariableListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEventsVariableListResponseBody} extends {@link TeaModel} * * <p>DescribeEventsVariableListResponseBody</p> */ public class DescribeEventsVariableListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeEventsVariableListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeEventsVariableListResponseBody 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(DescribeEventsVariableListResponseBody 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 DescribeEventsVariableListResponseBody build() { return new DescribeEventsVariableListResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExcuteNumRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExcuteNumRequest} extends {@link RequestModel} * * <p>DescribeExcuteNumRequest</p> */ public class DescribeExcuteNumRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Code") @com.aliyun.core.annotation.Validation(required = true) private String code; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Degree") private String degree; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndDate") private String endDate; @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("StartDate") private String startDate; private DescribeExcuteNumRequest(Builder builder) { super(builder); this.code = builder.code; this.degree = builder.degree; this.endDate = builder.endDate; this.lang = builder.lang; this.sourceIp = builder.sourceIp; this.startDate = builder.startDate; } public static Builder builder() { return new Builder(); } public static DescribeExcuteNumRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return code */ public String getCode() { return this.code; } /** * @return degree */ public String getDegree() { return this.degree; } /** * @return endDate */ public String getEndDate() { return this.endDate; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return startDate */ public String getStartDate() { return this.startDate; } public static final class Builder extends Request.Builder<DescribeExcuteNumRequest, Builder> { private String code; private String degree; private String endDate; private String lang; private String sourceIp; private String startDate; private Builder() { super(); } private Builder(DescribeExcuteNumRequest request) { super(request); this.code = request.code; this.degree = request.degree; this.endDate = request.endDate; this.lang = request.lang; this.sourceIp = request.sourceIp; this.startDate = request.startDate; } /** * <p>Service code.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>saf_all</p> */ public Builder code(String code) { this.putQueryParameter("Code", code); this.code = code; return this; } /** * <p>This field is currently unused and has no query significance.</p> * * <strong>example:</strong> * <p>暂时不需要传入</p> */ public Builder degree(String degree) { this.putQueryParameter("Degree", degree); this.degree = degree; return this; } /** * <p>End date, format yyyy-MM-dd, e.g., 2025-03-13.</p> * * <strong>example:</strong> * <p>2025-03-15</p> */ public Builder endDate(String endDate) { this.putQueryParameter("EndDate", endDate); this.endDate = endDate; return this; } /** * <p>Set the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Request source IP address.</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>Start date, format yyyy-MM-dd, e.g., 2025-03-10.</p> * * <strong>example:</strong> * <p>2025-03-10</p> */ public Builder startDate(String startDate) { this.putQueryParameter("StartDate", startDate); this.startDate = startDate; return this; } @Override public DescribeExcuteNumRequest build() { return new DescribeExcuteNumRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExcuteNumResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExcuteNumResponse} extends {@link TeaModel} * * <p>DescribeExcuteNumResponse</p> */ public class DescribeExcuteNumResponse 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 DescribeExcuteNumResponseBody body; private DescribeExcuteNumResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeExcuteNumResponse 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 DescribeExcuteNumResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeExcuteNumResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeExcuteNumResponseBody body); @Override DescribeExcuteNumResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeExcuteNumResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeExcuteNumResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeExcuteNumResponse 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(DescribeExcuteNumResponseBody body) { this.body = body; return this; } @Override public DescribeExcuteNumResponse build() { return new DescribeExcuteNumResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExcuteNumResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExcuteNumResponseBody} extends {@link TeaModel} * * <p>DescribeExcuteNumResponseBody</p> */ public class DescribeExcuteNumResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Categories") private java.util.List<String> categories; @com.aliyun.core.annotation.NameInMap("Data") private java.util.List<String> data; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeExcuteNumResponseBody(Builder builder) { this.categories = builder.categories; this.data = builder.data; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeExcuteNumResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return categories */ public java.util.List<String> getCategories() { return this.categories; } /** * @return data */ public java.util.List<String> getData() { return this.data; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List<String> categories; private java.util.List<String> data; private String requestId; private Builder() { } private Builder(DescribeExcuteNumResponseBody model) { this.categories = model.categories; this.data = model.data; this.requestId = model.requestId; } /** * <p>Service category names.</p> */ public Builder categories(java.util.List<String> categories) { this.categories = categories; return this; } /** * <p>Returned data.</p> */ public Builder data(java.util.List<String> data) { this.data = data; 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; } public DescribeExcuteNumResponseBody build() { return new DescribeExcuteNumResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExistNameRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExistNameRequest} extends {@link RequestModel} * * <p>DescribeExistNameRequest</p> */ public class DescribeExistNameRequest 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("name") private String name; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DescribeExistNameRequest(Builder builder) { super(builder); this.lang = builder.lang; this.name = builder.name; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeExistNameRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return name */ public String getName() { return this.name; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeExistNameRequest, Builder> { private String lang; private String name; private String regId; private Builder() { super(); } private Builder(DescribeExistNameRequest request) { super(request); this.lang = request.lang; this.name = request.name; 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>Variable name</p> * * <strong>example:</strong> * <p>age</p> */ public Builder name(String name) { this.putQueryParameter("name", name); this.name = name; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeExistNameRequest build() { return new DescribeExistNameRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExistNameResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExistNameResponse} extends {@link TeaModel} * * <p>DescribeExistNameResponse</p> */ public class DescribeExistNameResponse 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 DescribeExistNameResponseBody body; private DescribeExistNameResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeExistNameResponse 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 DescribeExistNameResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeExistNameResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeExistNameResponseBody body); @Override DescribeExistNameResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeExistNameResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeExistNameResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeExistNameResponse 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(DescribeExistNameResponseBody body) { this.body = body; return this; } @Override public DescribeExistNameResponse build() { return new DescribeExistNameResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExistNameResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExistNameResponseBody} extends {@link TeaModel} * * <p>DescribeExistNameResponseBody</p> */ public class DescribeExistNameResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeExistNameResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeExistNameResponseBody 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(DescribeExistNameResponseBody 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 DescribeExistNameResponseBody build() { return new DescribeExistNameResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExistSceneRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExistSceneRequest} extends {@link RequestModel} * * <p>DescribeExistSceneRequest</p> */ public class DescribeExistSceneRequest 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("SceneName") private String sceneName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeExistSceneRequest(Builder builder) { super(builder); this.lang = builder.lang; this.sceneName = builder.sceneName; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeExistSceneRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return sceneName */ public String getSceneName() { return this.sceneName; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeExistSceneRequest, Builder> { private String lang; private String sceneName; private String regId; private Builder() { super(); } private Builder(DescribeExistSceneRequest request) { super(request); this.lang = request.lang; this.sceneName = request.sceneName; 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>Scene name.</p> * * <strong>example:</strong> * <p>样本调度</p> */ public Builder sceneName(String sceneName) { this.putQueryParameter("SceneName", sceneName); this.sceneName = sceneName; 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 DescribeExistSceneRequest build() { return new DescribeExistSceneRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExistSceneResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExistSceneResponse} extends {@link TeaModel} * * <p>DescribeExistSceneResponse</p> */ public class DescribeExistSceneResponse 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 DescribeExistSceneResponseBody body; private DescribeExistSceneResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeExistSceneResponse 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 DescribeExistSceneResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeExistSceneResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeExistSceneResponseBody body); @Override DescribeExistSceneResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeExistSceneResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeExistSceneResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeExistSceneResponse 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(DescribeExistSceneResponseBody body) { this.body = body; return this; } @Override public DescribeExistSceneResponse build() { return new DescribeExistSceneResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExistSceneResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExistSceneResponseBody} extends {@link TeaModel} * * <p>DescribeExistSceneResponseBody</p> */ public class DescribeExistSceneResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("data") private Boolean data; private DescribeExistSceneResponseBody(Builder builder) { this.requestId = builder.requestId; this.data = builder.data; } public static Builder builder() { return new Builder(); } public static DescribeExistSceneResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return data */ public Boolean getData() { return this.data; } public static final class Builder { private String requestId; private Boolean data; private Builder() { } private Builder(DescribeExistSceneResponseBody model) { this.requestId = model.requestId; this.data = model.data; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Data object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder data(Boolean data) { this.data = data; return this; } public DescribeExistSceneResponseBody build() { return new DescribeExistSceneResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExpressionVariableDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExpressionVariableDetailRequest} extends {@link RequestModel} * * <p>DescribeExpressionVariableDetailRequest</p> */ public class DescribeExpressionVariableDetailRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("id") @com.aliyun.core.annotation.Validation(required = true) private Long id; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DescribeExpressionVariableDetailRequest(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 DescribeExpressionVariableDetailRequest 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<DescribeExpressionVariableDetailRequest, Builder> { private String lang; private Long id; private String regId; private Builder() { super(); } private Builder(DescribeExpressionVariableDetailRequest request) { super(request); this.lang = request.lang; this.id = request.id; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Primary key ID</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>334</p> */ public Builder id(Long id) { this.putQueryParameter("id", id); this.id = id; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeExpressionVariableDetailRequest build() { return new DescribeExpressionVariableDetailRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExpressionVariableDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExpressionVariableDetailResponse} extends {@link TeaModel} * * <p>DescribeExpressionVariableDetailResponse</p> */ public class DescribeExpressionVariableDetailResponse 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 DescribeExpressionVariableDetailResponseBody body; private DescribeExpressionVariableDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeExpressionVariableDetailResponse 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 DescribeExpressionVariableDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeExpressionVariableDetailResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeExpressionVariableDetailResponseBody body); @Override DescribeExpressionVariableDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeExpressionVariableDetailResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeExpressionVariableDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeExpressionVariableDetailResponse 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(DescribeExpressionVariableDetailResponseBody body) { this.body = body; return this; } @Override public DescribeExpressionVariableDetailResponse build() { return new DescribeExpressionVariableDetailResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExpressionVariableDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExpressionVariableDetailResponseBody} extends {@link TeaModel} * * <p>DescribeExpressionVariableDetailResponseBody</p> */ public class DescribeExpressionVariableDetailResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.Map<String, ?> resultObject; private DescribeExpressionVariableDetailResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeExpressionVariableDetailResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public java.util.Map<String, ?> getResultObject() { return this.resultObject; } public static final class Builder { private String requestId; private java.util.Map<String, ?> resultObject; private Builder() { } private Builder(DescribeExpressionVariableDetailResponseBody 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(java.util.Map<String, ?> resultObject) { this.resultObject = resultObject; return this; } public DescribeExpressionVariableDetailResponseBody build() { return new DescribeExpressionVariableDetailResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExpressionVariableFunctionListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExpressionVariableFunctionListRequest} extends {@link RequestModel} * * <p>DescribeExpressionVariableFunctionListRequest</p> */ public class DescribeExpressionVariableFunctionListRequest 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 DescribeExpressionVariableFunctionListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeExpressionVariableFunctionListRequest 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<DescribeExpressionVariableFunctionListRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeExpressionVariableFunctionListRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeExpressionVariableFunctionListRequest build() { return new DescribeExpressionVariableFunctionListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExpressionVariableFunctionListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExpressionVariableFunctionListResponse} extends {@link TeaModel} * * <p>DescribeExpressionVariableFunctionListResponse</p> */ public class DescribeExpressionVariableFunctionListResponse 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 DescribeExpressionVariableFunctionListResponseBody body; private DescribeExpressionVariableFunctionListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeExpressionVariableFunctionListResponse 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 DescribeExpressionVariableFunctionListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeExpressionVariableFunctionListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeExpressionVariableFunctionListResponseBody body); @Override DescribeExpressionVariableFunctionListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeExpressionVariableFunctionListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeExpressionVariableFunctionListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeExpressionVariableFunctionListResponse 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(DescribeExpressionVariableFunctionListResponseBody body) { this.body = body; return this; } @Override public DescribeExpressionVariableFunctionListResponse build() { return new DescribeExpressionVariableFunctionListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExpressionVariableFunctionListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExpressionVariableFunctionListResponseBody} extends {@link TeaModel} * * <p>DescribeExpressionVariableFunctionListResponseBody</p> */ public class DescribeExpressionVariableFunctionListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeExpressionVariableFunctionListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeExpressionVariableFunctionListResponseBody 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(DescribeExpressionVariableFunctionListResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>6E8817D5-5354-5953-84B1-D98379F036DC</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 DescribeExpressionVariableFunctionListResponseBody build() { return new DescribeExpressionVariableFunctionListResponseBody(this); } } /** * * {@link DescribeExpressionVariableFunctionListResponseBody} extends {@link TeaModel} * * <p>DescribeExpressionVariableFunctionListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("key") private String key; @com.aliyun.core.annotation.NameInMap("maxParamSize") private Long maxParamSize; @com.aliyun.core.annotation.NameInMap("minParamSize") private Long minParamSize; @com.aliyun.core.annotation.NameInMap("paramTypes") private String paramTypes; @com.aliyun.core.annotation.NameInMap("redirect") private Boolean redirect; @com.aliyun.core.annotation.NameInMap("returnTypes") private String returnTypes; @com.aliyun.core.annotation.NameInMap("value") private String value; private ResultObject(Builder builder) { this.description = builder.description; this.key = builder.key; this.maxParamSize = builder.maxParamSize; this.minParamSize = builder.minParamSize; this.paramTypes = builder.paramTypes; this.redirect = builder.redirect; this.returnTypes = builder.returnTypes; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return description */ public String getDescription() { return this.description; } /** * @return key */ public String getKey() { return this.key; } /** * @return maxParamSize */ public Long getMaxParamSize() { return this.maxParamSize; } /** * @return minParamSize */ public Long getMinParamSize() { return this.minParamSize; } /** * @return paramTypes */ public String getParamTypes() { return this.paramTypes; } /** * @return redirect */ public Boolean getRedirect() { return this.redirect; } /** * @return returnTypes */ public String getReturnTypes() { return this.returnTypes; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder { private String description; private String key; private Long maxParamSize; private Long minParamSize; private String paramTypes; private Boolean redirect; private String returnTypes; private String value; private Builder() { } private Builder(ResultObject model) { this.description = model.description; this.key = model.key; this.maxParamSize = model.maxParamSize; this.minParamSize = model.minParamSize; this.paramTypes = model.paramTypes; this.redirect = model.redirect; this.returnTypes = model.returnTypes; this.value = model.value; } /** * <p>Description information.</p> * * <strong>example:</strong> * <p>描述</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Function name</p> * * <strong>example:</strong> * <p>concat</p> */ public Builder key(String key) { this.key = key; return this; } /** * <p>Maximum number of parameters</p> * * <strong>example:</strong> * <p>4</p> */ public Builder maxParamSize(Long maxParamSize) { this.maxParamSize = maxParamSize; return this; } /** * <p>Minimum number of parameters</p> * * <strong>example:</strong> * <p>2</p> */ public Builder minParamSize(Long minParamSize) { this.minParamSize = minParamSize; return this; } /** * <p>Parameter types</p> * * <strong>example:</strong> * <p>*STRING</p> */ public Builder paramTypes(String paramTypes) { this.paramTypes = paramTypes; return this; } /** * <p>Whether it is directly invoked</p> * * <strong>example:</strong> * <p>true</p> */ public Builder redirect(Boolean redirect) { this.redirect = redirect; return this; } /** * <p>Method return types</p> * * <strong>example:</strong> * <p>STRING</p> */ public Builder returnTypes(String returnTypes) { this.returnTypes = returnTypes; return this; } /** * <p>Function value</p> * * <strong>example:</strong> * <p>concat</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/DescribeExpressionVariablePageRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExpressionVariablePageRequest} extends {@link RequestModel} * * <p>DescribeExpressionVariablePageRequest</p> */ public class DescribeExpressionVariablePageRequest 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 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("outputs") private String outputs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") @com.aliyun.core.annotation.Validation(required = true) private String pageSize; @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("status") private String status; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("value") private String value; private DescribeExpressionVariablePageRequest(Builder builder) { super(builder); this.lang = builder.lang; this.currentPage = builder.currentPage; this.eventCode = builder.eventCode; this.outputs = builder.outputs; this.pageSize = builder.pageSize; this.regId = builder.regId; this.status = builder.status; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static DescribeExpressionVariablePageRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return eventCode */ public String getEventCode() { return this.eventCode; } /** * @return outputs */ public String getOutputs() { return this.outputs; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return status */ public String getStatus() { return this.status; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder extends Request.Builder<DescribeExpressionVariablePageRequest, Builder> { private String lang; private String currentPage; private String eventCode; private String outputs; private String pageSize; private String regId; private String status; private String value; private Builder() { super(); } private Builder(DescribeExpressionVariablePageRequest request) { super(request); this.lang = request.lang; this.currentPage = request.currentPage; this.eventCode = request.eventCode; this.outputs = request.outputs; this.pageSize = request.pageSize; this.regId = request.regId; this.status = request.status; this.value = request.value; } /** * <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(String currentPage) { this.putQueryParameter("currentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Event code.</p> * * <strong>example:</strong> * <p>de_aamexg3015,de_aamexg3342</p> */ public Builder eventCode(String eventCode) { this.putQueryParameter("eventCode", eventCode); this.eventCode = eventCode; return this; } /** * <p>Variable return type.</p> * * <strong>example:</strong> * <p>STRING</p> */ public Builder outputs(String outputs) { this.putQueryParameter("outputs", outputs); this.outputs = outputs; 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(String 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; } /** * <p>Status.</p> * * <strong>example:</strong> * <p>ENABLE</p> */ public Builder status(String status) { this.putQueryParameter("status", status); this.status = status; return this; } /** * <p>Variable name/description.</p> * * <strong>example:</strong> * <p>自定义变量</p> */ public Builder value(String value) { this.putQueryParameter("value", value); this.value = value; return this; } @Override public DescribeExpressionVariablePageRequest build() { return new DescribeExpressionVariablePageRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExpressionVariablePageResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExpressionVariablePageResponse} extends {@link TeaModel} * * <p>DescribeExpressionVariablePageResponse</p> */ public class DescribeExpressionVariablePageResponse 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 DescribeExpressionVariablePageResponseBody body; private DescribeExpressionVariablePageResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeExpressionVariablePageResponse 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 DescribeExpressionVariablePageResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeExpressionVariablePageResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeExpressionVariablePageResponseBody body); @Override DescribeExpressionVariablePageResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeExpressionVariablePageResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeExpressionVariablePageResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeExpressionVariablePageResponse 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(DescribeExpressionVariablePageResponseBody body) { this.body = body; return this; } @Override public DescribeExpressionVariablePageResponse build() { return new DescribeExpressionVariablePageResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeExpressionVariablePageResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeExpressionVariablePageResponseBody} extends {@link TeaModel} * * <p>DescribeExpressionVariablePageResponseBody</p> */ public class DescribeExpressionVariablePageResponseBody 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 DescribeExpressionVariablePageResponseBody(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 DescribeExpressionVariablePageResponseBody 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(DescribeExpressionVariablePageResponseBody 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>31</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 DescribeExpressionVariablePageResponseBody build() { return new DescribeExpressionVariablePageResponseBody(this); } } /** * * {@link DescribeExpressionVariablePageResponseBody} extends {@link TeaModel} * * <p>DescribeExpressionVariablePageResponseBody</p> */ public static class ResultObject extends TeaModel { @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("outputs") private String outputs; @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; @com.aliyun.core.annotation.NameInMap("version") private Long version; private ResultObject(Builder builder) { this.description = builder.description; this.eventName = builder.eventName; this.gmtModified = builder.gmtModified; this.id = builder.id; this.name = builder.name; this.outputs = builder.outputs; this.ruleList = builder.ruleList; this.status = builder.status; this.title = builder.title; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return description */ public String getDescription() { return this.description; } /** * @return 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 outputs */ public String getOutputs() { return this.outputs; } /** * @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; } /** * @return version */ public Long getVersion() { return this.version; } public static final class Builder { private String description; private String eventName; private Long gmtModified; private Long id; private String name; private String outputs; private java.util.List<String> ruleList; private String status; private String title; private Long version; private Builder() { } private Builder(ResultObject model) { this.description = model.description; this.eventName = model.eventName; this.gmtModified = model.gmtModified; this.id = model.id; this.name = model.name; this.outputs = model.outputs; this.ruleList = model.ruleList; this.status = model.status; this.title = model.title; this.version = model.version; } /** * <p>Description information.</p> * * <strong>example:</strong> * <p>变量描述</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Event 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 of custom variable.</p> * * <strong>example:</strong> * <p>2793</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Query variable name.</p> * * <strong>example:</strong> * <p>ex_OERlw0Zqfb23</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Variable return type.</p> * * <strong>example:</strong> * <p>DOUBLE</p> */ public Builder outputs(String outputs) { this.outputs = outputs; 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>获取手机号前7位自定义变量</p> */ public Builder title(String title) { this.title = title; return this; } /** * <p>Version information.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder version(Long version) { this.version = version; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeFieldByIdRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFieldByIdRequest} extends {@link RequestModel} * * <p>DescribeFieldByIdRequest</p> */ public class DescribeFieldByIdRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DescribeFieldByIdRequest(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 DescribeFieldByIdRequest 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<DescribeFieldByIdRequest, Builder> { private String lang; private Long id; private String regId; private Builder() { super(); } private Builder(DescribeFieldByIdRequest 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> * * <strong>example:</strong> * <p>223</p> */ public Builder id(Long id) { this.putQueryParameter("id", id); this.id = id; return this; } /** * <p>Region code</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeFieldByIdRequest build() { return new DescribeFieldByIdRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeFieldByIdResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFieldByIdResponse} extends {@link TeaModel} * * <p>DescribeFieldByIdResponse</p> */ public class DescribeFieldByIdResponse 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 DescribeFieldByIdResponseBody body; private DescribeFieldByIdResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeFieldByIdResponse 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 DescribeFieldByIdResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeFieldByIdResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeFieldByIdResponseBody body); @Override DescribeFieldByIdResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeFieldByIdResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeFieldByIdResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeFieldByIdResponse 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(DescribeFieldByIdResponseBody body) { this.body = body; return this; } @Override public DescribeFieldByIdResponse build() { return new DescribeFieldByIdResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeFieldByIdResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFieldByIdResponseBody} extends {@link TeaModel} * * <p>DescribeFieldByIdResponseBody</p> */ public class DescribeFieldByIdResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeFieldByIdResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeFieldByIdResponseBody 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(DescribeFieldByIdResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DescribeFieldByIdResponseBody build() { return new DescribeFieldByIdResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeFieldListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFieldListRequest} extends {@link RequestModel} * * <p>DescribeFieldListRequest</p> */ public class DescribeFieldListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("condition") private String condition; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("inputs") private String inputs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") @com.aliyun.core.annotation.Validation(required = true) private String regId; private DescribeFieldListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.condition = builder.condition; this.inputs = builder.inputs; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeFieldListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return condition */ public String getCondition() { return this.condition; } /** * @return inputs */ public String getInputs() { return this.inputs; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeFieldListRequest, Builder> { private String lang; private String condition; private String inputs; private String regId; private Builder() { super(); } private Builder(DescribeFieldListRequest request) { super(request); this.lang = request.lang; this.condition = request.condition; this.inputs = request.inputs; 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>Query input name or title</p> * * <strong>example:</strong> * <p>ip</p> */ public Builder condition(String condition) { this.putQueryParameter("condition", condition); this.condition = condition; return this; } /** * <p>Selected fields</p> * * <strong>example:</strong> * <p>sex,ip,id</p> */ public Builder inputs(String inputs) { this.putQueryParameter("inputs", inputs); this.inputs = inputs; 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 DescribeFieldListRequest build() { return new DescribeFieldListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeFieldListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFieldListResponse} extends {@link TeaModel} * * <p>DescribeFieldListResponse</p> */ public class DescribeFieldListResponse 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 DescribeFieldListResponseBody body; private DescribeFieldListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeFieldListResponse 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 DescribeFieldListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeFieldListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeFieldListResponseBody body); @Override DescribeFieldListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeFieldListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeFieldListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeFieldListResponse 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(DescribeFieldListResponseBody body) { this.body = body; return this; } @Override public DescribeFieldListResponse build() { return new DescribeFieldListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeFieldListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFieldListResponseBody} extends {@link TeaModel} * * <p>DescribeFieldListResponseBody</p> */ public class DescribeFieldListResponseBody 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 DescribeFieldListResponseBody(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 DescribeFieldListResponseBody 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(DescribeFieldListResponseBody 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>101</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 DescribeFieldListResponseBody build() { return new DescribeFieldListResponseBody(this); } } /** * * {@link DescribeFieldListResponseBody} extends {@link TeaModel} * * <p>DescribeFieldListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("classify") private String classify; @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("enumData") private String enumData; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("source") private String source; @com.aliyun.core.annotation.NameInMap("status") private String status; @com.aliyun.core.annotation.NameInMap("title") private String title; @com.aliyun.core.annotation.NameInMap("type") private String type; private ResultObject(Builder builder) { this.classify = builder.classify; this.description = builder.description; this.enumData = builder.enumData; this.id = builder.id; this.name = builder.name; this.source = builder.source; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return classify */ public String getClassify() { return this.classify; } /** * @return description */ public String getDescription() { return this.description; } /** * @return enumData */ public String getEnumData() { return this.enumData; } /** * @return id */ public Long getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } /** * @return source */ public String getSource() { return this.source; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String classify; private String description; private String enumData; private Long id; private String name; private String source; private String status; private String title; private String type; private Builder() { } private Builder(ResultObject model) { this.classify = model.classify; this.description = model.description; this.enumData = model.enumData; this.id = model.id; this.name = model.name; this.source = model.source; this.status = model.status; this.title = model.title; this.type = model.type; } /** * <p>Field classification</p> * * <strong>example:</strong> * <p>REQUEST_PARAM</p> */ public Builder classify(String classify) { this.classify = classify; return this; } /** * <p>Description information.</p> * * <strong>example:</strong> * <p>描述</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Enum data</p> * * <strong>example:</strong> * <p>STATUS</p> */ public Builder enumData(String enumData) { this.enumData = enumData; return this; } /** * <p>Field ID.</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Field name</p> * * <strong>example:</strong> * <p>age</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Field source</p> * * <strong>example:</strong> * <p>DEFINE</p> */ public Builder source(String source) { this.source = source; 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; } /** * <p>Field type</p> * * <strong>example:</strong> * <p>STRING</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/DescribeFieldPageRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFieldPageRequest} extends {@link RequestModel} * * <p>DescribeFieldPageRequest</p> */ public class DescribeFieldPageRequest 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("classify") private String classify; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("condition") private String condition; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("currentPage") private String 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 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("source") private String source; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("status") private String status; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("title") private String title; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("type") private String type; private DescribeFieldPageRequest(Builder builder) { super(builder); this.lang = builder.lang; this.classify = builder.classify; this.condition = builder.condition; this.currentPage = builder.currentPage; this.name = builder.name; this.pageSize = builder.pageSize; this.regId = builder.regId; this.source = builder.source; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static DescribeFieldPageRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return classify */ public String getClassify() { return this.classify; } /** * @return condition */ public String getCondition() { return this.condition; } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return name */ public String getName() { return this.name; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return source */ public String getSource() { return this.source; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder extends Request.Builder<DescribeFieldPageRequest, Builder> { private String lang; private String classify; private String condition; private String currentPage; private String name; private String pageSize; private String regId; private String source; private String status; private String title; private String type; private Builder() { super(); } private Builder(DescribeFieldPageRequest request) { super(request); this.lang = request.lang; this.classify = request.classify; this.condition = request.condition; this.currentPage = request.currentPage; this.name = request.name; this.pageSize = request.pageSize; this.regId = request.regId; this.source = request.source; this.status = request.status; this.title = request.title; this.type = request.type; } /** * <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>Field classification</p> * * <strong>example:</strong> * <p>REQUEST_PARAM</p> */ public Builder classify(String classify) { this.putQueryParameter("classify", classify); this.classify = classify; return this; } /** * <p>Query input parameter name or title</p> * * <strong>example:</strong> * <p>age/年龄</p> */ public Builder condition(String condition) { this.putQueryParameter("condition", condition); this.condition = condition; 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>Field name</p> * * <strong>example:</strong> * <p>age</p> */ public Builder name(String name) { this.putQueryParameter("name", name); this.name = name; return this; } /** * <p>Number of items per page, default value is 10</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(String pageSize) { this.putQueryParameter("pageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } /** * <p>Field source</p> * * <strong>example:</strong> * <p>DEFINE</p> */ public Builder source(String source) { this.putQueryParameter("source", source); this.source = source; 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; } /** * <p>Title.</p> * * <strong>example:</strong> * <p>年龄</p> */ public Builder title(String title) { this.putQueryParameter("title", title); this.title = title; return this; } /** * <p>Field type</p> * * <strong>example:</strong> * <p>STRING</p> */ public Builder type(String type) { this.putQueryParameter("type", type); this.type = type; return this; } @Override public DescribeFieldPageRequest build() { return new DescribeFieldPageRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeFieldPageResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFieldPageResponse} extends {@link TeaModel} * * <p>DescribeFieldPageResponse</p> */ public class DescribeFieldPageResponse 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 DescribeFieldPageResponseBody body; private DescribeFieldPageResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeFieldPageResponse 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 DescribeFieldPageResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeFieldPageResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeFieldPageResponseBody body); @Override DescribeFieldPageResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeFieldPageResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeFieldPageResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeFieldPageResponse 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(DescribeFieldPageResponseBody body) { this.body = body; return this; } @Override public DescribeFieldPageResponse build() { return new DescribeFieldPageResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeFieldPageResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFieldPageResponseBody} extends {@link TeaModel} * * <p>DescribeFieldPageResponseBody</p> */ public class DescribeFieldPageResponseBody 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 DescribeFieldPageResponseBody(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 DescribeFieldPageResponseBody 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(DescribeFieldPageResponseBody model) { this.requestId = model.requestId; this.currentPage = model.currentPage; this.pageSize = model.pageSize; this.resultObject = model.resultObject; this.totalItem = model.totalItem; this.totalPage = model.totalPage; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Current page number</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>Number of items per page, default value is 10</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>Returned object</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } /** * <p>Total number of items</p> * * <strong>example:</strong> * <p>40</p> */ public Builder totalItem(Integer totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>4</p> */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } public DescribeFieldPageResponseBody build() { return new DescribeFieldPageResponseBody(this); } } /** * * {@link DescribeFieldPageResponseBody} extends {@link TeaModel} * * <p>DescribeFieldPageResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("classify") private String classify; @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("enumData") private String enumData; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("source") private String source; @com.aliyun.core.annotation.NameInMap("status") private String status; @com.aliyun.core.annotation.NameInMap("title") private String title; @com.aliyun.core.annotation.NameInMap("type") private String type; private ResultObject(Builder builder) { this.classify = builder.classify; this.description = builder.description; this.enumData = builder.enumData; this.id = builder.id; this.name = builder.name; this.source = builder.source; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return classify */ public String getClassify() { return this.classify; } /** * @return description */ public String getDescription() { return this.description; } /** * @return enumData */ public String getEnumData() { return this.enumData; } /** * @return id */ public Long getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } /** * @return source */ public String getSource() { return this.source; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String classify; private String description; private String enumData; private Long id; private String name; private String source; private String status; private String title; private String type; private Builder() { } private Builder(ResultObject model) { this.classify = model.classify; this.description = model.description; this.enumData = model.enumData; this.id = model.id; this.name = model.name; this.source = model.source; this.status = model.status; this.title = model.title; this.type = model.type; } /** * <p>Field classification</p> * * <strong>example:</strong> * <p>REQUEST_PARAM</p> */ public Builder classify(String classify) { this.classify = classify; return this; } /** * <p>Description information.</p> * * <strong>example:</strong> * <p>描述</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Enum data</p> * * <strong>example:</strong> * <p>STATUS</p> */ public Builder enumData(String enumData) { this.enumData = enumData; return this; } /** * <p>Unique table ID.</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Field name</p> * * <strong>example:</strong> * <p>age</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>File source.</p> * * <strong>example:</strong> * <p>DEFINE</p> */ public Builder source(String source) { this.source = source; 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; } /** * <p>Field type</p> * * <strong>example:</strong> * <p>STRING</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/DescribeGroupAccountPageRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupAccountPageRequest} extends {@link RequestModel} * * <p>DescribeGroupAccountPageRequest</p> */ public class DescribeGroupAccountPageRequest 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("communityNo") private String communityNo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("currentPage") private String currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("direction") private String direction; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("fieldKey") private String fieldKey; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("fieldVal") private String fieldVal; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("isPage") private Boolean isPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("order") private String order; @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("taskId") private String taskId; private DescribeGroupAccountPageRequest(Builder builder) { super(builder); this.lang = builder.lang; this.communityNo = builder.communityNo; this.currentPage = builder.currentPage; this.direction = builder.direction; this.fieldKey = builder.fieldKey; this.fieldVal = builder.fieldVal; this.isPage = builder.isPage; this.order = builder.order; this.pageSize = builder.pageSize; this.regId = builder.regId; this.taskId = builder.taskId; } public static Builder builder() { return new Builder(); } public static DescribeGroupAccountPageRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return communityNo */ public String getCommunityNo() { return this.communityNo; } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return direction */ public String getDirection() { return this.direction; } /** * @return fieldKey */ public String getFieldKey() { return this.fieldKey; } /** * @return fieldVal */ public String getFieldVal() { return this.fieldVal; } /** * @return isPage */ public Boolean getIsPage() { return this.isPage; } /** * @return order */ public String getOrder() { return this.order; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return taskId */ public String getTaskId() { return this.taskId; } public static final class Builder extends Request.Builder<DescribeGroupAccountPageRequest, Builder> { private String lang; private String communityNo; private String currentPage; private String direction; private String fieldKey; private String fieldVal; private Boolean isPage; private String order; private String pageSize; private String regId; private String taskId; private Builder() { super(); } private Builder(DescribeGroupAccountPageRequest request) { super(request); this.lang = request.lang; this.communityNo = request.communityNo; this.currentPage = request.currentPage; this.direction = request.direction; this.fieldKey = request.fieldKey; this.fieldVal = request.fieldVal; this.isPage = request.isPage; this.order = request.order; this.pageSize = request.pageSize; this.regId = request.regId; this.taskId = request.taskId; } /** * <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>Community number.</p> * * <strong>example:</strong> * <p>129838420210118141502KiJ1SZL2</p> */ public Builder communityNo(String communityNo) { this.putQueryParameter("communityNo", communityNo); this.communityNo = communityNo; 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>Order direction.</p> * * <strong>example:</strong> * <p>0</p> */ public Builder direction(String direction) { this.putQueryParameter("direction", direction); this.direction = direction; return this; } /** * <p>fieldKey.</p> * * <strong>example:</strong> * <p>mobile</p> */ public Builder fieldKey(String fieldKey) { this.putQueryParameter("fieldKey", fieldKey); this.fieldKey = fieldKey; return this; } /** * <p>fieldVal.</p> * * <strong>example:</strong> * <p>18000000000</p> */ public Builder fieldVal(String fieldVal) { this.putQueryParameter("fieldVal", fieldVal); this.fieldVal = fieldVal; return this; } /** * <p>Whether to paginate.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder isPage(Boolean isPage) { this.putQueryParameter("isPage", isPage); this.isPage = isPage; return this; } /** * <p>Sorting condition.</p> * * <strong>example:</strong> * <p>asc</p> */ public Builder order(String order) { this.putQueryParameter("order", order); this.order = order; 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>Task ID.</p> * * <strong>example:</strong> * <p>6770764</p> */ public Builder taskId(String taskId) { this.putQueryParameter("taskId", taskId); this.taskId = taskId; return this; } @Override public DescribeGroupAccountPageRequest build() { return new DescribeGroupAccountPageRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeGroupAccountPageResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupAccountPageResponse} extends {@link TeaModel} * * <p>DescribeGroupAccountPageResponse</p> */ public class DescribeGroupAccountPageResponse 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 DescribeGroupAccountPageResponseBody body; private DescribeGroupAccountPageResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeGroupAccountPageResponse 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 DescribeGroupAccountPageResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeGroupAccountPageResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeGroupAccountPageResponseBody body); @Override DescribeGroupAccountPageResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeGroupAccountPageResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeGroupAccountPageResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeGroupAccountPageResponse 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(DescribeGroupAccountPageResponseBody body) { this.body = body; return this; } @Override public DescribeGroupAccountPageResponse build() { return new DescribeGroupAccountPageResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeGroupAccountPageResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupAccountPageResponseBody} extends {@link TeaModel} * * <p>DescribeGroupAccountPageResponseBody</p> */ public class DescribeGroupAccountPageResponseBody 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("data") private Boolean data; @com.aliyun.core.annotation.NameInMap("pageSize") private Integer pageSize; @com.aliyun.core.annotation.NameInMap("totalItem") private Integer totalItem; @com.aliyun.core.annotation.NameInMap("totalPage") private Integer totalPage; private DescribeGroupAccountPageResponseBody(Builder builder) { this.requestId = builder.requestId; this.currentPage = builder.currentPage; this.data = builder.data; this.pageSize = builder.pageSize; this.totalItem = builder.totalItem; this.totalPage = builder.totalPage; } public static Builder builder() { return new Builder(); } public static DescribeGroupAccountPageResponseBody 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 data */ public Boolean getData() { return this.data; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @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 Boolean data; private Integer pageSize; private Integer totalItem; private Integer totalPage; private Builder() { } private Builder(DescribeGroupAccountPageResponseBody model) { this.requestId = model.requestId; this.currentPage = model.currentPage; this.data = model.data; this.pageSize = model.pageSize; 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>Returned data object.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder data(Boolean data) { this.data = data; 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>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 DescribeGroupAccountPageResponseBody build() { return new DescribeGroupAccountPageResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeGroupConditionListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupConditionListRequest} extends {@link RequestModel} * * <p>DescribeGroupConditionListRequest</p> */ public class DescribeGroupConditionListRequest 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 DescribeGroupConditionListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeGroupConditionListRequest 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<DescribeGroupConditionListRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeGroupConditionListRequest 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 DescribeGroupConditionListRequest build() { return new DescribeGroupConditionListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeGroupConditionListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupConditionListResponse} extends {@link TeaModel} * * <p>DescribeGroupConditionListResponse</p> */ public class DescribeGroupConditionListResponse 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 DescribeGroupConditionListResponseBody body; private DescribeGroupConditionListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeGroupConditionListResponse 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 DescribeGroupConditionListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeGroupConditionListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeGroupConditionListResponseBody body); @Override DescribeGroupConditionListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeGroupConditionListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeGroupConditionListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeGroupConditionListResponse 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(DescribeGroupConditionListResponseBody body) { this.body = body; return this; } @Override public DescribeGroupConditionListResponse build() { return new DescribeGroupConditionListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeGroupConditionListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupConditionListResponseBody} extends {@link TeaModel} * * <p>DescribeGroupConditionListResponseBody</p> */ public class DescribeGroupConditionListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeGroupConditionListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeGroupConditionListResponseBody 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(DescribeGroupConditionListResponseBody 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 DescribeGroupConditionListResponseBody build() { return new DescribeGroupConditionListResponseBody(this); } } /** * * {@link DescribeGroupConditionListResponseBody} extends {@link TeaModel} * * <p>DescribeGroupConditionListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("fieldKey") private String fieldKey; @com.aliyun.core.annotation.NameInMap("fieldValue") private String fieldValue; private ResultObject(Builder builder) { this.fieldKey = builder.fieldKey; this.fieldValue = builder.fieldValue; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return fieldKey */ public String getFieldKey() { return this.fieldKey; } /** * @return fieldValue */ public String getFieldValue() { return this.fieldValue; } public static final class Builder { private String fieldKey; private String fieldValue; private Builder() { } private Builder(ResultObject model) { this.fieldKey = model.fieldKey; this.fieldValue = model.fieldValue; } /** * <p>Field key</p> * * <strong>example:</strong> * <p>key</p> */ public Builder fieldKey(String fieldKey) { this.fieldKey = fieldKey; return this; } /** * <p>Field value.</p> * * <strong>example:</strong> * <p>value</p> */ public Builder fieldValue(String fieldValue) { this.fieldValue = fieldValue; 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/DescribeGroupPageRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupPageRequest} extends {@link RequestModel} * * <p>DescribeGroupPageRequest</p> */ public class DescribeGroupPageRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("currentPage") private String currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("direction") private String direction; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("order") private String order; @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("taskId") private String taskId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("timeType") private String timeType; private DescribeGroupPageRequest(Builder builder) { super(builder); this.lang = builder.lang; this.currentPage = builder.currentPage; this.direction = builder.direction; this.order = builder.order; this.pageSize = builder.pageSize; this.regId = builder.regId; this.taskId = builder.taskId; this.timeType = builder.timeType; } public static Builder builder() { return new Builder(); } public static DescribeGroupPageRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return direction */ public String getDirection() { return this.direction; } /** * @return order */ public String getOrder() { return this.order; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return taskId */ public String getTaskId() { return this.taskId; } /** * @return timeType */ public String getTimeType() { return this.timeType; } public static final class Builder extends Request.Builder<DescribeGroupPageRequest, Builder> { private String lang; private String currentPage; private String direction; private String order; private String pageSize; private String regId; private String taskId; private String timeType; private Builder() { super(); } private Builder(DescribeGroupPageRequest request) { super(request); this.lang = request.lang; this.currentPage = request.currentPage; this.direction = request.direction; this.order = request.order; this.pageSize = request.pageSize; this.regId = request.regId; this.taskId = request.taskId; this.timeType = request.timeType; } /** * <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>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>Order.</p> * * <strong>example:</strong> * <p>0</p> */ public Builder direction(String direction) { this.putQueryParameter("direction", direction); this.direction = direction; return this; } /** * <p>Sorting condition.</p> * * <strong>example:</strong> * <p>asc</p> */ public Builder order(String order) { this.putQueryParameter("order", order); this.order = order; return this; } /** * <p>Page size, with a default value of 10.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(String pageSize) { this.putQueryParameter("pageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>Region code.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } /** * <p>Task ID.</p> * * <strong>example:</strong> * <p>6770764</p> */ public Builder taskId(String taskId) { this.putQueryParameter("taskId", taskId); this.taskId = taskId; return this; } /** * <p>Time type.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder timeType(String timeType) { this.putQueryParameter("timeType", timeType); this.timeType = timeType; return this; } @Override public DescribeGroupPageRequest build() { return new DescribeGroupPageRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeGroupPageResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupPageResponse} extends {@link TeaModel} * * <p>DescribeGroupPageResponse</p> */ public class DescribeGroupPageResponse 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 DescribeGroupPageResponseBody body; private DescribeGroupPageResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeGroupPageResponse 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 DescribeGroupPageResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeGroupPageResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeGroupPageResponseBody body); @Override DescribeGroupPageResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeGroupPageResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeGroupPageResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeGroupPageResponse 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(DescribeGroupPageResponseBody body) { this.body = body; return this; } @Override public DescribeGroupPageResponse build() { return new DescribeGroupPageResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeGroupPageResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupPageResponseBody} extends {@link TeaModel} * * <p>DescribeGroupPageResponseBody</p> */ public class DescribeGroupPageResponseBody 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 DescribeGroupPageResponseBody(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 DescribeGroupPageResponseBody 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(DescribeGroupPageResponseBody 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>1</p> */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } public DescribeGroupPageResponseBody build() { return new DescribeGroupPageResponseBody(this); } } /** * * {@link DescribeGroupPageResponseBody} extends {@link TeaModel} * * <p>DescribeGroupPageResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("communityNo") private String communityNo; @com.aliyun.core.annotation.NameInMap("createTime") private Long createTime; @com.aliyun.core.annotation.NameInMap("groupRisk") private String groupRisk; @com.aliyun.core.annotation.NameInMap("groupScale") private String groupScale; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("sceneName") private String sceneName; @com.aliyun.core.annotation.NameInMap("taskId") private Long taskId; @com.aliyun.core.annotation.NameInMap("userId") private String userId; private ResultObject(Builder builder) { this.communityNo = builder.communityNo; this.createTime = builder.createTime; this.groupRisk = builder.groupRisk; this.groupScale = builder.groupScale; this.id = builder.id; this.sceneName = builder.sceneName; this.taskId = builder.taskId; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return communityNo */ public String getCommunityNo() { return this.communityNo; } /** * @return createTime */ public Long getCreateTime() { return this.createTime; } /** * @return groupRisk */ public String getGroupRisk() { return this.groupRisk; } /** * @return groupScale */ public String getGroupScale() { return this.groupScale; } /** * @return id */ public Long getId() { return this.id; } /** * @return sceneName */ public String getSceneName() { return this.sceneName; } /** * @return taskId */ public Long getTaskId() { return this.taskId; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private String communityNo; private Long createTime; private String groupRisk; private String groupScale; private Long id; private String sceneName; private Long taskId; private String userId; private Builder() { } private Builder(ResultObject model) { this.communityNo = model.communityNo; this.createTime = model.createTime; this.groupRisk = model.groupRisk; this.groupScale = model.groupScale; this.id = model.id; this.sceneName = model.sceneName; this.taskId = model.taskId; this.userId = model.userId; } /** * <p>Community number.</p> * * <strong>example:</strong> * <p>129838420210118141502RaMMIgVG</p> */ public Builder communityNo(String communityNo) { this.communityNo = communityNo; return this; } /** * <p>Creation time.</p> * * <strong>example:</strong> * <p>1699450018265</p> */ public Builder createTime(Long createTime) { this.createTime = createTime; return this; } /** * <p>Group risk concentration.</p> * * <strong>example:</strong> * <p>80</p> */ public Builder groupRisk(String groupRisk) { this.groupRisk = groupRisk; return this; } /** * <p>Group scale.</p> * * <strong>example:</strong> * <p>2</p> */ public Builder groupScale(String groupScale) { this.groupScale = groupScale; return this; } /** * <p>Primary key ID.</p> * * <strong>example:</strong> * <p>497</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Scene name.</p> * * <strong>example:</strong> * <p>通用图计算</p> */ public Builder sceneName(String sceneName) { this.sceneName = sceneName; return this; } /** * <p>Task ID.</p> * * <strong>example:</strong> * <p>6770764</p> */ public Builder taskId(Long taskId) { this.taskId = taskId; return this; } /** * <p>User UID.</p> * * <strong>example:</strong> * <p>1519714049632764</p> */ public Builder userId(String userId) { this.userId = userId; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeGroupStatisticsByTodayRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupStatisticsByTodayRequest} extends {@link RequestModel} * * <p>DescribeGroupStatisticsByTodayRequest</p> */ public class DescribeGroupStatisticsByTodayRequest 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 DescribeGroupStatisticsByTodayRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeGroupStatisticsByTodayRequest 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<DescribeGroupStatisticsByTodayRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeGroupStatisticsByTodayRequest 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 DescribeGroupStatisticsByTodayRequest build() { return new DescribeGroupStatisticsByTodayRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeGroupStatisticsByTodayResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupStatisticsByTodayResponse} extends {@link TeaModel} * * <p>DescribeGroupStatisticsByTodayResponse</p> */ public class DescribeGroupStatisticsByTodayResponse 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 DescribeGroupStatisticsByTodayResponseBody body; private DescribeGroupStatisticsByTodayResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeGroupStatisticsByTodayResponse 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 DescribeGroupStatisticsByTodayResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeGroupStatisticsByTodayResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeGroupStatisticsByTodayResponseBody body); @Override DescribeGroupStatisticsByTodayResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeGroupStatisticsByTodayResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeGroupStatisticsByTodayResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeGroupStatisticsByTodayResponse 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(DescribeGroupStatisticsByTodayResponseBody body) { this.body = body; return this; } @Override public DescribeGroupStatisticsByTodayResponse build() { return new DescribeGroupStatisticsByTodayResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeGroupStatisticsByTodayResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupStatisticsByTodayResponseBody} extends {@link TeaModel} * * <p>DescribeGroupStatisticsByTodayResponseBody</p> */ public class DescribeGroupStatisticsByTodayResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("data") private Boolean data; private DescribeGroupStatisticsByTodayResponseBody(Builder builder) { this.requestId = builder.requestId; this.data = builder.data; } public static Builder builder() { return new Builder(); } public static DescribeGroupStatisticsByTodayResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return data */ public Boolean getData() { return this.data; } public static final class Builder { private String requestId; private Boolean data; private Builder() { } private Builder(DescribeGroupStatisticsByTodayResponseBody model) { this.requestId = model.requestId; this.data = model.data; } /** * <p>Request ID</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned data.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder data(Boolean data) { this.data = data; return this; } public DescribeGroupStatisticsByTodayResponseBody build() { return new DescribeGroupStatisticsByTodayResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeGroupTrendRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupTrendRequest} extends {@link RequestModel} * * <p>DescribeGroupTrendRequest</p> */ public class DescribeGroupTrendRequest 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("day") private String day; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeGroupTrendRequest(Builder builder) { super(builder); this.lang = builder.lang; this.day = builder.day; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeGroupTrendRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return day */ public String getDay() { return this.day; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeGroupTrendRequest, Builder> { private String lang; private String day; private String regId; private Builder() { super(); } private Builder(DescribeGroupTrendRequest request) { super(request); this.lang = request.lang; this.day = request.day; 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>day</p> * * <strong>example:</strong> * <p>1</p> */ public Builder day(String day) { this.putQueryParameter("day", day); this.day = day; 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 DescribeGroupTrendRequest build() { return new DescribeGroupTrendRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeGroupTrendResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupTrendResponse} extends {@link TeaModel} * * <p>DescribeGroupTrendResponse</p> */ public class DescribeGroupTrendResponse 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 DescribeGroupTrendResponseBody body; private DescribeGroupTrendResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeGroupTrendResponse 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 DescribeGroupTrendResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeGroupTrendResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeGroupTrendResponseBody body); @Override DescribeGroupTrendResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeGroupTrendResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeGroupTrendResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeGroupTrendResponse 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(DescribeGroupTrendResponseBody body) { this.body = body; return this; } @Override public DescribeGroupTrendResponse build() { return new DescribeGroupTrendResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeGroupTrendResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeGroupTrendResponseBody} extends {@link TeaModel} * * <p>DescribeGroupTrendResponseBody</p> */ public class DescribeGroupTrendResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("data") private Boolean data; private DescribeGroupTrendResponseBody(Builder builder) { this.requestId = builder.requestId; this.data = builder.data; } public static Builder builder() { return new Builder(); } public static DescribeGroupTrendResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return data */ public Boolean getData() { return this.data; } public static final class Builder { private String requestId; private Boolean data; private Builder() { } private Builder(DescribeGroupTrendResponseBody model) { this.requestId = model.requestId; this.data = model.data; } /** * <p>Request ID</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return result.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder data(Boolean data) { this.data = data; return this; } public DescribeGroupTrendResponseBody build() { return new DescribeGroupTrendResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeHasRuleNameByEventCodeRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHasRuleNameByEventCodeRequest} extends {@link RequestModel} * * <p>DescribeHasRuleNameByEventCodeRequest</p> */ public class DescribeHasRuleNameByEventCodeRequest 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("excludeRuleId") private String excludeRuleId; @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 DescribeHasRuleNameByEventCodeRequest(Builder builder) { super(builder); this.lang = builder.lang; this.eventCode = builder.eventCode; this.excludeRuleId = builder.excludeRuleId; this.regId = builder.regId; this.ruleName = builder.ruleName; } public static Builder builder() { return new Builder(); } public static DescribeHasRuleNameByEventCodeRequest 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 excludeRuleId */ public String getExcludeRuleId() { return this.excludeRuleId; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return ruleName */ public String getRuleName() { return this.ruleName; } public static final class Builder extends Request.Builder<DescribeHasRuleNameByEventCodeRequest, Builder> { private String lang; private String eventCode; private String excludeRuleId; private String regId; private String ruleName; private Builder() { super(); } private Builder(DescribeHasRuleNameByEventCodeRequest request) { super(request); this.lang = request.lang; this.eventCode = request.eventCode; this.excludeRuleId = request.excludeRuleId; 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>Event code</p> * * <strong>example:</strong> * <p>de_atvmlf7412</p> */ public Builder eventCode(String eventCode) { this.putQueryParameter("eventCode", eventCode); this.eventCode = eventCode; return this; } /** * <p>Excluded policy ID</p> * * <strong>example:</strong> * <p>10621</p> */ public Builder excludeRuleId(String excludeRuleId) { this.putQueryParameter("excludeRuleId", excludeRuleId); this.excludeRuleId = excludeRuleId; 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>非常见设备</p> */ public Builder ruleName(String ruleName) { this.putQueryParameter("ruleName", ruleName); this.ruleName = ruleName; return this; } @Override public DescribeHasRuleNameByEventCodeRequest build() { return new DescribeHasRuleNameByEventCodeRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeHasRuleNameByEventCodeResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHasRuleNameByEventCodeResponse} extends {@link TeaModel} * * <p>DescribeHasRuleNameByEventCodeResponse</p> */ public class DescribeHasRuleNameByEventCodeResponse 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 DescribeHasRuleNameByEventCodeResponseBody body; private DescribeHasRuleNameByEventCodeResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeHasRuleNameByEventCodeResponse 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 DescribeHasRuleNameByEventCodeResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeHasRuleNameByEventCodeResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeHasRuleNameByEventCodeResponseBody body); @Override DescribeHasRuleNameByEventCodeResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeHasRuleNameByEventCodeResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeHasRuleNameByEventCodeResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeHasRuleNameByEventCodeResponse 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(DescribeHasRuleNameByEventCodeResponseBody body) { this.body = body; return this; } @Override public DescribeHasRuleNameByEventCodeResponse build() { return new DescribeHasRuleNameByEventCodeResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeHasRuleNameByEventCodeResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHasRuleNameByEventCodeResponseBody} extends {@link TeaModel} * * <p>DescribeHasRuleNameByEventCodeResponseBody</p> */ public class DescribeHasRuleNameByEventCodeResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeHasRuleNameByEventCodeResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeHasRuleNameByEventCodeResponseBody 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(DescribeHasRuleNameByEventCodeResponseBody 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 DescribeHasRuleNameByEventCodeResponseBody build() { return new DescribeHasRuleNameByEventCodeResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeHighRiskPieChartRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHighRiskPieChartRequest} extends {@link RequestModel} * * <p>DescribeHighRiskPieChartRequest</p> */ public class DescribeHighRiskPieChartRequest 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 DescribeHighRiskPieChartRequest(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 DescribeHighRiskPieChartRequest 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<DescribeHighRiskPieChartRequest, Builder> { private String lang; private Long beginTime; private Long endTime; private String eventCodes; private String regId; private Builder() { super(); } private Builder(DescribeHighRiskPieChartRequest 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>1730453400000</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 DescribeHighRiskPieChartRequest build() { return new DescribeHighRiskPieChartRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeHighRiskPieChartResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHighRiskPieChartResponse} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponse</p> */ public class DescribeHighRiskPieChartResponse 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 DescribeHighRiskPieChartResponseBody body; private DescribeHighRiskPieChartResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeHighRiskPieChartResponse 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 DescribeHighRiskPieChartResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeHighRiskPieChartResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeHighRiskPieChartResponseBody body); @Override DescribeHighRiskPieChartResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeHighRiskPieChartResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeHighRiskPieChartResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeHighRiskPieChartResponse 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(DescribeHighRiskPieChartResponseBody body) { this.body = body; return this; } @Override public DescribeHighRiskPieChartResponse build() { return new DescribeHighRiskPieChartResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeHighRiskPieChartResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public class DescribeHighRiskPieChartResponseBody 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 DescribeHighRiskPieChartResponseBody(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 DescribeHighRiskPieChartResponseBody 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(DescribeHighRiskPieChartResponseBody 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 DescribeHighRiskPieChartResponseBody build() { return new DescribeHighRiskPieChartResponseBody(this); } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class Grid extends TeaModel { @com.aliyun.core.annotation.NameInMap("show") private Boolean show; private Grid(Builder builder) { this.show = builder.show; } public static Builder builder() { return new Builder(); } public static Grid create() { return builder().build(); } /** * @return show */ public Boolean getShow() { return this.show; } public static final class Builder { private Boolean show; private Builder() { } private Builder(Grid model) { this.show = model.show; } /** * <p>Chart flag, default false</p> * * <strong>example:</strong> * <p>false</p> */ public Builder show(Boolean show) { this.show = show; return this; } public Grid build() { return new Grid(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class Data extends TeaModel { @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("value") private String value; private Data(Builder builder) { this.name = builder.name; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return name */ public String getName() { return this.name; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder { private String name; private String value; private Builder() { } private Builder(Data model) { this.name = model.name; this.value = model.value; } /** * <p>Field name</p> * * <strong>example:</strong> * <p>杭州市</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Data value</p> * * <strong>example:</strong> * <p>100</p> */ public Builder value(String value) { this.value = value; return this; } public Data build() { return new Data(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class Series extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<Data> data; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("roseType") private String roseType; private Series(Builder builder) { this.data = builder.data; this.name = builder.name; this.roseType = builder.roseType; } public static Builder builder() { return new Builder(); } public static Series create() { return builder().build(); } /** * @return data */ public java.util.List<Data> getData() { return this.data; } /** * @return name */ public String getName() { return this.name; } /** * @return roseType */ public String getRoseType() { return this.roseType; } public static final class Builder { private java.util.List<Data> data; private String name; private String roseType; private Builder() { } private Builder(Series model) { this.data = model.data; this.name = model.name; this.roseType = model.roseType; } /** * <p>Returned data object</p> */ public Builder data(java.util.List<Data> data) { this.data = data; return this; } /** * <p>Field name</p> * * <strong>example:</strong> * <p>杭州市</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Chart identifier, default is false</p> * * <strong>example:</strong> * <p>false</p> */ public Builder roseType(String roseType) { this.roseType = roseType; return this; } public Series build() { return new Series(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class HighRiskIPCity extends TeaModel { @com.aliyun.core.annotation.NameInMap("animation") private Boolean animation; @com.aliyun.core.annotation.NameInMap("grid") private Grid grid; @com.aliyun.core.annotation.NameInMap("series") private java.util.List<Series> series; private HighRiskIPCity(Builder builder) { this.animation = builder.animation; this.grid = builder.grid; this.series = builder.series; } public static Builder builder() { return new Builder(); } public static HighRiskIPCity create() { return builder().build(); } /** * @return animation */ public Boolean getAnimation() { return this.animation; } /** * @return grid */ public Grid getGrid() { return this.grid; } /** * @return series */ public java.util.List<Series> getSeries() { return this.series; } public static final class Builder { private Boolean animation; private Grid grid; private java.util.List<Series> series; private Builder() { } private Builder(HighRiskIPCity model) { this.animation = model.animation; this.grid = model.grid; this.series = model.series; } /** * <p>Chart flag, default true</p> * * <strong>example:</strong> * <p>true</p> */ public Builder animation(Boolean animation) { this.animation = animation; return this; } /** * <p>Belonging grid.</p> */ public Builder grid(Grid grid) { this.grid = grid; return this; } /** * <p>Chart data</p> */ public Builder series(java.util.List<Series> series) { this.series = series; return this; } public HighRiskIPCity build() { return new HighRiskIPCity(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class HighRiskIPProvinceGrid extends TeaModel { @com.aliyun.core.annotation.NameInMap("show") private Boolean show; private HighRiskIPProvinceGrid(Builder builder) { this.show = builder.show; } public static Builder builder() { return new Builder(); } public static HighRiskIPProvinceGrid create() { return builder().build(); } /** * @return show */ public Boolean getShow() { return this.show; } public static final class Builder { private Boolean show; private Builder() { } private Builder(HighRiskIPProvinceGrid model) { this.show = model.show; } /** * <p>Chart identifier, default is false</p> * * <strong>example:</strong> * <p>false</p> */ public Builder show(Boolean show) { this.show = show; return this; } public HighRiskIPProvinceGrid build() { return new HighRiskIPProvinceGrid(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class SeriesData extends TeaModel { @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("value") private String value; private SeriesData(Builder builder) { this.name = builder.name; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static SeriesData create() { return builder().build(); } /** * @return name */ public String getName() { return this.name; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder { private String name; private String value; private Builder() { } private Builder(SeriesData model) { this.name = model.name; this.value = model.value; } /** * <p>Variable name</p> * * <strong>example:</strong> * <p>浙江省</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Data value</p> * * <strong>example:</strong> * <p>100</p> */ public Builder value(String value) { this.value = value; return this; } public SeriesData build() { return new SeriesData(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class HighRiskIPProvinceSeries extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<SeriesData> data; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("roseType") private String roseType; private HighRiskIPProvinceSeries(Builder builder) { this.data = builder.data; this.name = builder.name; this.roseType = builder.roseType; } public static Builder builder() { return new Builder(); } public static HighRiskIPProvinceSeries create() { return builder().build(); } /** * @return data */ public java.util.List<SeriesData> getData() { return this.data; } /** * @return name */ public String getName() { return this.name; } /** * @return roseType */ public String getRoseType() { return this.roseType; } public static final class Builder { private java.util.List<SeriesData> data; private String name; private String roseType; private Builder() { } private Builder(HighRiskIPProvinceSeries model) { this.data = model.data; this.name = model.name; this.roseType = model.roseType; } /** * <p>Returned data object</p> */ public Builder data(java.util.List<SeriesData> data) { this.data = data; return this; } /** * <p>Field name</p> * * <strong>example:</strong> * <p>浙江省</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Chart identifier, default is false</p> * * <strong>example:</strong> * <p>false</p> */ public Builder roseType(String roseType) { this.roseType = roseType; return this; } public HighRiskIPProvinceSeries build() { return new HighRiskIPProvinceSeries(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class HighRiskIPProvince extends TeaModel { @com.aliyun.core.annotation.NameInMap("animation") private Boolean animation; @com.aliyun.core.annotation.NameInMap("grid") private HighRiskIPProvinceGrid grid; @com.aliyun.core.annotation.NameInMap("series") private java.util.List<HighRiskIPProvinceSeries> series; private HighRiskIPProvince(Builder builder) { this.animation = builder.animation; this.grid = builder.grid; this.series = builder.series; } public static Builder builder() { return new Builder(); } public static HighRiskIPProvince create() { return builder().build(); } /** * @return animation */ public Boolean getAnimation() { return this.animation; } /** * @return grid */ public HighRiskIPProvinceGrid getGrid() { return this.grid; } /** * @return series */ public java.util.List<HighRiskIPProvinceSeries> getSeries() { return this.series; } public static final class Builder { private Boolean animation; private HighRiskIPProvinceGrid grid; private java.util.List<HighRiskIPProvinceSeries> series; private Builder() { } private Builder(HighRiskIPProvince model) { this.animation = model.animation; this.grid = model.grid; this.series = model.series; } /** * <p>Chart identifier, default is true</p> * * <strong>example:</strong> * <p>true</p> */ public Builder animation(Boolean animation) { this.animation = animation; return this; } /** * <p>Belonging grid.</p> */ public Builder grid(HighRiskIPProvinceGrid grid) { this.grid = grid; return this; } /** * <p>Chart data</p> */ public Builder series(java.util.List<HighRiskIPProvinceSeries> series) { this.series = series; return this; } public HighRiskIPProvince build() { return new HighRiskIPProvince(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class HighRiskMobileCityGrid extends TeaModel { @com.aliyun.core.annotation.NameInMap("show") private Boolean show; private HighRiskMobileCityGrid(Builder builder) { this.show = builder.show; } public static Builder builder() { return new Builder(); } public static HighRiskMobileCityGrid create() { return builder().build(); } /** * @return show */ public Boolean getShow() { return this.show; } public static final class Builder { private Boolean show; private Builder() { } private Builder(HighRiskMobileCityGrid model) { this.show = model.show; } /** * <p>Chart flag, default is false</p> * * <strong>example:</strong> * <p>false</p> */ public Builder show(Boolean show) { this.show = show; return this; } public HighRiskMobileCityGrid build() { return new HighRiskMobileCityGrid(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class HighRiskMobileCitySeriesData extends TeaModel { @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("value") private String value; private HighRiskMobileCitySeriesData(Builder builder) { this.name = builder.name; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static HighRiskMobileCitySeriesData create() { return builder().build(); } /** * @return name */ public String getName() { return this.name; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder { private String name; private String value; private Builder() { } private Builder(HighRiskMobileCitySeriesData model) { this.name = model.name; this.value = model.value; } /** * <p>Field name</p> * * <strong>example:</strong> * <p>杭州市</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Data value</p> * * <strong>example:</strong> * <p>100</p> */ public Builder value(String value) { this.value = value; return this; } public HighRiskMobileCitySeriesData build() { return new HighRiskMobileCitySeriesData(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class HighRiskMobileCitySeries extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<HighRiskMobileCitySeriesData> data; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("roseType") private String roseType; private HighRiskMobileCitySeries(Builder builder) { this.data = builder.data; this.name = builder.name; this.roseType = builder.roseType; } public static Builder builder() { return new Builder(); } public static HighRiskMobileCitySeries create() { return builder().build(); } /** * @return data */ public java.util.List<HighRiskMobileCitySeriesData> getData() { return this.data; } /** * @return name */ public String getName() { return this.name; } /** * @return roseType */ public String getRoseType() { return this.roseType; } public static final class Builder { private java.util.List<HighRiskMobileCitySeriesData> data; private String name; private String roseType; private Builder() { } private Builder(HighRiskMobileCitySeries model) { this.data = model.data; this.name = model.name; this.roseType = model.roseType; } /** * <p>Returned data object</p> */ public Builder data(java.util.List<HighRiskMobileCitySeriesData> data) { this.data = data; return this; } /** * <p>Field name</p> * * <strong>example:</strong> * <p>杭州市</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Chart flag, default is false</p> * * <strong>example:</strong> * <p>false</p> */ public Builder roseType(String roseType) { this.roseType = roseType; return this; } public HighRiskMobileCitySeries build() { return new HighRiskMobileCitySeries(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class HighRiskMobileCity extends TeaModel { @com.aliyun.core.annotation.NameInMap("animation") private Boolean animation; @com.aliyun.core.annotation.NameInMap("grid") private HighRiskMobileCityGrid grid; @com.aliyun.core.annotation.NameInMap("series") private java.util.List<HighRiskMobileCitySeries> series; private HighRiskMobileCity(Builder builder) { this.animation = builder.animation; this.grid = builder.grid; this.series = builder.series; } public static Builder builder() { return new Builder(); } public static HighRiskMobileCity create() { return builder().build(); } /** * @return animation */ public Boolean getAnimation() { return this.animation; } /** * @return grid */ public HighRiskMobileCityGrid getGrid() { return this.grid; } /** * @return series */ public java.util.List<HighRiskMobileCitySeries> getSeries() { return this.series; } public static final class Builder { private Boolean animation; private HighRiskMobileCityGrid grid; private java.util.List<HighRiskMobileCitySeries> series; private Builder() { } private Builder(HighRiskMobileCity model) { this.animation = model.animation; this.grid = model.grid; this.series = model.series; } /** * <p>Chart flag, default is true</p> * * <strong>example:</strong> * <p>true</p> */ public Builder animation(Boolean animation) { this.animation = animation; return this; } /** * <p>Belongs to grid.</p> */ public Builder grid(HighRiskMobileCityGrid grid) { this.grid = grid; return this; } /** * <p>Chart data</p> */ public Builder series(java.util.List<HighRiskMobileCitySeries> series) { this.series = series; return this; } public HighRiskMobileCity build() { return new HighRiskMobileCity(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class HighRiskMobileProvinceGrid extends TeaModel { @com.aliyun.core.annotation.NameInMap("show") private Boolean show; private HighRiskMobileProvinceGrid(Builder builder) { this.show = builder.show; } public static Builder builder() { return new Builder(); } public static HighRiskMobileProvinceGrid create() { return builder().build(); } /** * @return show */ public Boolean getShow() { return this.show; } public static final class Builder { private Boolean show; private Builder() { } private Builder(HighRiskMobileProvinceGrid model) { this.show = model.show; } /** * <p>Chart flag, default is false</p> * * <strong>example:</strong> * <p>false</p> */ public Builder show(Boolean show) { this.show = show; return this; } public HighRiskMobileProvinceGrid build() { return new HighRiskMobileProvinceGrid(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class HighRiskMobileProvinceSeriesData extends TeaModel { @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("value") private String value; private HighRiskMobileProvinceSeriesData(Builder builder) { this.name = builder.name; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static HighRiskMobileProvinceSeriesData create() { return builder().build(); } /** * @return name */ public String getName() { return this.name; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder { private String name; private String value; private Builder() { } private Builder(HighRiskMobileProvinceSeriesData model) { this.name = model.name; this.value = model.value; } /** * <p>Field name</p> * * <strong>example:</strong> * <p>浙江省</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Data value</p> * * <strong>example:</strong> * <p>100</p> */ public Builder value(String value) { this.value = value; return this; } public HighRiskMobileProvinceSeriesData build() { return new HighRiskMobileProvinceSeriesData(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class HighRiskMobileProvinceSeries extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<HighRiskMobileProvinceSeriesData> data; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("roseType") private String roseType; private HighRiskMobileProvinceSeries(Builder builder) { this.data = builder.data; this.name = builder.name; this.roseType = builder.roseType; } public static Builder builder() { return new Builder(); } public static HighRiskMobileProvinceSeries create() { return builder().build(); } /** * @return data */ public java.util.List<HighRiskMobileProvinceSeriesData> getData() { return this.data; } /** * @return name */ public String getName() { return this.name; } /** * @return roseType */ public String getRoseType() { return this.roseType; } public static final class Builder { private java.util.List<HighRiskMobileProvinceSeriesData> data; private String name; private String roseType; private Builder() { } private Builder(HighRiskMobileProvinceSeries model) { this.data = model.data; this.name = model.name; this.roseType = model.roseType; } /** * <p>High-risk position data.</p> */ public Builder data(java.util.List<HighRiskMobileProvinceSeriesData> data) { this.data = data; return this; } /** * <p>Display title</p> * * <strong>example:</strong> * <p>分值区间占比</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Chart identifier, default false</p> * * <strong>example:</strong> * <p>false</p> */ public Builder roseType(String roseType) { this.roseType = roseType; return this; } public HighRiskMobileProvinceSeries build() { return new HighRiskMobileProvinceSeries(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class HighRiskMobileProvince extends TeaModel { @com.aliyun.core.annotation.NameInMap("animation") private Boolean animation; @com.aliyun.core.annotation.NameInMap("grid") private HighRiskMobileProvinceGrid grid; @com.aliyun.core.annotation.NameInMap("series") private java.util.List<HighRiskMobileProvinceSeries> series; private HighRiskMobileProvince(Builder builder) { this.animation = builder.animation; this.grid = builder.grid; this.series = builder.series; } public static Builder builder() { return new Builder(); } public static HighRiskMobileProvince create() { return builder().build(); } /** * @return animation */ public Boolean getAnimation() { return this.animation; } /** * @return grid */ public HighRiskMobileProvinceGrid getGrid() { return this.grid; } /** * @return series */ public java.util.List<HighRiskMobileProvinceSeries> getSeries() { return this.series; } public static final class Builder { private Boolean animation; private HighRiskMobileProvinceGrid grid; private java.util.List<HighRiskMobileProvinceSeries> series; private Builder() { } private Builder(HighRiskMobileProvince model) { this.animation = model.animation; this.grid = model.grid; this.series = model.series; } /** * <p>Indicator, default true</p> * * <strong>example:</strong> * <p>true</p> */ public Builder animation(Boolean animation) { this.animation = animation; return this; } /** * <p>Belongs to grid.</p> */ public Builder grid(HighRiskMobileProvinceGrid grid) { this.grid = grid; return this; } /** * <p>Chart data</p> */ public Builder series(java.util.List<HighRiskMobileProvinceSeries> series) { this.series = series; return this; } public HighRiskMobileProvince build() { return new HighRiskMobileProvince(this); } } } /** * * {@link DescribeHighRiskPieChartResponseBody} extends {@link TeaModel} * * <p>DescribeHighRiskPieChartResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("highRiskIPCity") private HighRiskIPCity highRiskIPCity; @com.aliyun.core.annotation.NameInMap("highRiskIPProvince") private HighRiskIPProvince highRiskIPProvince; @com.aliyun.core.annotation.NameInMap("highRiskMobileCity") private HighRiskMobileCity highRiskMobileCity; @com.aliyun.core.annotation.NameInMap("highRiskMobileProvince") private HighRiskMobileProvince highRiskMobileProvince; private ResultObject(Builder builder) { this.highRiskIPCity = builder.highRiskIPCity; this.highRiskIPProvince = builder.highRiskIPProvince; this.highRiskMobileCity = builder.highRiskMobileCity; this.highRiskMobileProvince = builder.highRiskMobileProvince; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return highRiskIPCity */ public HighRiskIPCity getHighRiskIPCity() { return this.highRiskIPCity; } /** * @return highRiskIPProvince */ public HighRiskIPProvince getHighRiskIPProvince() { return this.highRiskIPProvince; } /** * @return highRiskMobileCity */ public HighRiskMobileCity getHighRiskMobileCity() { return this.highRiskMobileCity; } /** * @return highRiskMobileProvince */ public HighRiskMobileProvince getHighRiskMobileProvince() { return this.highRiskMobileProvince; } public static final class Builder { private HighRiskIPCity highRiskIPCity; private HighRiskIPProvince highRiskIPProvince; private HighRiskMobileCity highRiskMobileCity; private HighRiskMobileProvince highRiskMobileProvince; private Builder() { } private Builder(ResultObject model) { this.highRiskIPCity = model.highRiskIPCity; this.highRiskIPProvince = model.highRiskIPProvince; this.highRiskMobileCity = model.highRiskMobileCity; this.highRiskMobileProvince = model.highRiskMobileProvince; } /** * <p>High-risk IP city</p> */ public Builder highRiskIPCity(HighRiskIPCity highRiskIPCity) { this.highRiskIPCity = highRiskIPCity; return this; } /** * <p>High-risk IP归属province</p> */ public Builder highRiskIPProvince(HighRiskIPProvince highRiskIPProvince) { this.highRiskIPProvince = highRiskIPProvince; return this; } /** * <p>High-risk mobile phone归属city</p> */ public Builder highRiskMobileCity(HighRiskMobileCity highRiskMobileCity) { this.highRiskMobileCity = highRiskMobileCity; return this; } /** * <p>High-risk mobile phone&quot;s province of origin</p> */ public Builder highRiskMobileProvince(HighRiskMobileProvince highRiskMobileProvince) { this.highRiskMobileProvince = highRiskMobileProvince; 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/DescribeHitRuleFluctuationRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHitRuleFluctuationRequest} extends {@link RequestModel} * * <p>DescribeHitRuleFluctuationRequest</p> */ public class DescribeHitRuleFluctuationRequest 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; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ruleStatus") private String ruleStatus; private DescribeHitRuleFluctuationRequest(Builder builder) { super(builder); this.lang = builder.lang; this.eventCodes = builder.eventCodes; this.regId = builder.regId; this.ruleStatus = builder.ruleStatus; } public static Builder builder() { return new Builder(); } public static DescribeHitRuleFluctuationRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return eventCodes */ public String getEventCodes() { return this.eventCodes; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return ruleStatus */ public String getRuleStatus() { return this.ruleStatus; } public static final class Builder extends Request.Builder<DescribeHitRuleFluctuationRequest, Builder> { private String lang; private String eventCodes; private String regId; private String ruleStatus; private Builder() { super(); } private Builder(DescribeHitRuleFluctuationRequest request) { super(request); this.lang = request.lang; this.eventCodes = request.eventCodes; this.regId = request.regId; this.ruleStatus = request.ruleStatus; } /** * <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 codes, separated by commas (,).</p> * * <strong>example:</strong> * <p>de_ahqhsw7665,de_agbzfi5134</p> */ public Builder eventCodes(String eventCodes) { this.putQueryParameter("eventCodes", eventCodes); this.eventCodes = eventCodes; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } /** * <p>Policy status</p> * * <strong>example:</strong> * <p>DRAFT</p> */ public Builder ruleStatus(String ruleStatus) { this.putQueryParameter("ruleStatus", ruleStatus); this.ruleStatus = ruleStatus; return this; } @Override public DescribeHitRuleFluctuationRequest build() { return new DescribeHitRuleFluctuationRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeHitRuleFluctuationResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHitRuleFluctuationResponse} extends {@link TeaModel} * * <p>DescribeHitRuleFluctuationResponse</p> */ public class DescribeHitRuleFluctuationResponse 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 DescribeHitRuleFluctuationResponseBody body; private DescribeHitRuleFluctuationResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeHitRuleFluctuationResponse 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 DescribeHitRuleFluctuationResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeHitRuleFluctuationResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeHitRuleFluctuationResponseBody body); @Override DescribeHitRuleFluctuationResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeHitRuleFluctuationResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeHitRuleFluctuationResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeHitRuleFluctuationResponse 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(DescribeHitRuleFluctuationResponseBody body) { this.body = body; return this; } @Override public DescribeHitRuleFluctuationResponse build() { return new DescribeHitRuleFluctuationResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeHitRuleFluctuationResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHitRuleFluctuationResponseBody} extends {@link TeaModel} * * <p>DescribeHitRuleFluctuationResponseBody</p> */ public class DescribeHitRuleFluctuationResponseBody 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 DescribeHitRuleFluctuationResponseBody(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 DescribeHitRuleFluctuationResponseBody 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(DescribeHitRuleFluctuationResponseBody 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 request was successful.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder success(Boolean success) { this.success = success; return this; } public DescribeHitRuleFluctuationResponseBody build() { return new DescribeHitRuleFluctuationResponseBody(this); } } /** * * {@link DescribeHitRuleFluctuationResponseBody} extends {@link TeaModel} * * <p>DescribeHitRuleFluctuationResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("ruleId") private String ruleId; @com.aliyun.core.annotation.NameInMap("ruleName") private String ruleName; @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.ruleId = builder.ruleId; this.ruleName = builder.ruleName; 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 ruleId */ public String getRuleId() { return this.ruleId; } /** * @return ruleName */ public String getRuleName() { return this.ruleName; } /** * @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 ruleId; private String ruleName; private Long todayNum; private String withinSevenDayNum; private String withinThirtyDayNum; private String withinThreeDayNum; private Long yesterdayNum; private Builder() { } private Builder(ResultObject model) { this.ruleId = model.ruleId; this.ruleName = model.ruleName; this.todayNum = model.todayNum; this.withinSevenDayNum = model.withinSevenDayNum; this.withinThirtyDayNum = model.withinThirtyDayNum; this.withinThreeDayNum = model.withinThreeDayNum; this.yesterdayNum = model.yesterdayNum; } /** * <p>Policy ID</p> * * <strong>example:</strong> * <p>115019</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>Today&quot;s count</p> * * <strong>example:</strong> * <p>100</p> */ public Builder todayNum(Long todayNum) { this.todayNum = todayNum; return this; } /** * <p>Count within seven days</p> * * <strong>example:</strong> * <p>600</p> */ public Builder withinSevenDayNum(String withinSevenDayNum) { this.withinSevenDayNum = withinSevenDayNum; return this; } /** * <p>Count within thirty days</p> * * <strong>example:</strong> * <p>1200</p> */ public Builder withinThirtyDayNum(String withinThirtyDayNum) { this.withinThirtyDayNum = withinThirtyDayNum; return this; } /** * <p>Count within three days</p> * * <strong>example:</strong> * <p>300</p> */ public Builder withinThreeDayNum(String withinThreeDayNum) { this.withinThreeDayNum = withinThreeDayNum; return this; } /** * <p>Yesterday&quot;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/DescribeHitRuleListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHitRuleListRequest} extends {@link RequestModel} * * <p>DescribeHitRuleListRequest</p> */ public class DescribeHitRuleListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("beginTime") private Long beginTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("endTime") private Long endTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventCodes") private String eventCodes; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventType") private String eventType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeHitRuleListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.beginTime = builder.beginTime; this.endTime = builder.endTime; this.eventCodes = builder.eventCodes; this.eventType = builder.eventType; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeHitRuleListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return beginTime */ public Long getBeginTime() { return this.beginTime; } /** * @return endTime */ public Long getEndTime() { return this.endTime; } /** * @return eventCodes */ public String getEventCodes() { return this.eventCodes; } /** * @return eventType */ public String getEventType() { return this.eventType; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeHitRuleListRequest, Builder> { private String lang; private Long beginTime; private Long endTime; private String eventCodes; private String eventType; private String regId; private Builder() { super(); } private Builder(DescribeHitRuleListRequest request) { super(request); this.lang = request.lang; this.beginTime = request.beginTime; this.endTime = request.endTime; this.eventCodes = request.eventCodes; this.eventType = request.eventType; this.regId = request.regId; } /** * <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Start time, accurate to milliseconds (ms).</p> * * <strong>example:</strong> * <p>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>1752027960000</p> */ public Builder endTime(Long endTime) { this.putQueryParameter("endTime", endTime); this.endTime = endTime; return this; } /** * <p>Event codes, separated by commas if multiple.</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>Event type</p> * * <strong>example:</strong> * <p>MAIN</p> */ public Builder eventType(String eventType) { this.putQueryParameter("eventType", eventType); this.eventType = eventType; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeHitRuleListRequest build() { return new DescribeHitRuleListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeHitRuleListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHitRuleListResponse} extends {@link TeaModel} * * <p>DescribeHitRuleListResponse</p> */ public class DescribeHitRuleListResponse 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 DescribeHitRuleListResponseBody body; private DescribeHitRuleListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeHitRuleListResponse 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 DescribeHitRuleListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeHitRuleListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeHitRuleListResponseBody body); @Override DescribeHitRuleListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeHitRuleListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeHitRuleListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeHitRuleListResponse 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(DescribeHitRuleListResponseBody body) { this.body = body; return this; } @Override public DescribeHitRuleListResponse build() { return new DescribeHitRuleListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeHitRuleListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHitRuleListResponseBody} extends {@link TeaModel} * * <p>DescribeHitRuleListResponseBody</p> */ public class DescribeHitRuleListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private java.util.List<ResultObject> resultObject; private DescribeHitRuleListResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeHitRuleListResponseBody 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(DescribeHitRuleListResponseBody 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>Response object</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } public DescribeHitRuleListResponseBody build() { return new DescribeHitRuleListResponseBody(this); } } /** * * {@link DescribeHitRuleListResponseBody} extends {@link TeaModel} * * <p>DescribeHitRuleListResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("hitCount") private Integer hitCount; @com.aliyun.core.annotation.NameInMap("ruleName") private String ruleName; private ResultObject(Builder builder) { this.hitCount = builder.hitCount; this.ruleName = builder.ruleName; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return hitCount */ public Integer getHitCount() { return this.hitCount; } /** * @return ruleName */ public String getRuleName() { return this.ruleName; } public static final class Builder { private Integer hitCount; private String ruleName; private Builder() { } private Builder(ResultObject model) { this.hitCount = model.hitCount; this.ruleName = model.ruleName; } /** * <p>Number of hits.</p> * * <strong>example:</strong> * <p>100</p> */ public Builder hitCount(Integer hitCount) { this.hitCount = hitCount; return this; } /** * <p>Strategy name</p> * * <strong>example:</strong> * <p>营销风险识别</p> */ public Builder ruleName(String ruleName) { this.ruleName = ruleName; return this; } public ResultObject build() { return new ResultObject(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeHitRuleTrendRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHitRuleTrendRequest} extends {@link RequestModel} * * <p>DescribeHitRuleTrendRequest</p> */ public class DescribeHitRuleTrendRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("beginTime") private Long beginTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("endTime") private Long endTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("eventCodes") private String eventCodes; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ruleStatus") private String ruleStatus; private DescribeHitRuleTrendRequest(Builder builder) { super(builder); this.lang = builder.lang; this.beginTime = builder.beginTime; this.endTime = builder.endTime; this.eventCodes = builder.eventCodes; this.regId = builder.regId; this.ruleStatus = builder.ruleStatus; } public static Builder builder() { return new Builder(); } public static DescribeHitRuleTrendRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return beginTime */ public Long getBeginTime() { return this.beginTime; } /** * @return endTime */ public Long getEndTime() { return this.endTime; } /** * @return eventCodes */ public String getEventCodes() { return this.eventCodes; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return ruleStatus */ public String getRuleStatus() { return this.ruleStatus; } public static final class Builder extends Request.Builder<DescribeHitRuleTrendRequest, Builder> { private String lang; private Long beginTime; private Long endTime; private String eventCodes; private String regId; private String ruleStatus; private Builder() { super(); } private Builder(DescribeHitRuleTrendRequest request) { super(request); this.lang = request.lang; this.beginTime = request.beginTime; this.endTime = request.endTime; this.eventCodes = request.eventCodes; this.regId = request.regId; this.ruleStatus = request.ruleStatus; } /** * <p>Sets the language type for the request and response messages. Default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Start time, accurate to milliseconds (ms).</p> * * <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>1746669075000</p> */ public Builder endTime(Long endTime) { this.putQueryParameter("endTime", endTime); this.endTime = endTime; return this; } /** * <p>Event codes, separated by commas (,).</p> * * <strong>example:</strong> * <p>de_ahqhsw7665,de_agbzfi5134</p> */ public Builder eventCodes(String eventCodes) { this.putQueryParameter("eventCodes", eventCodes); this.eventCodes = eventCodes; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } /** * <p>Rule status</p> * * <strong>example:</strong> * <p>DRAFT</p> */ public Builder ruleStatus(String ruleStatus) { this.putQueryParameter("ruleStatus", ruleStatus); this.ruleStatus = ruleStatus; return this; } @Override public DescribeHitRuleTrendRequest build() { return new DescribeHitRuleTrendRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeHitRuleTrendResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHitRuleTrendResponse} extends {@link TeaModel} * * <p>DescribeHitRuleTrendResponse</p> */ public class DescribeHitRuleTrendResponse 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 DescribeHitRuleTrendResponseBody body; private DescribeHitRuleTrendResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeHitRuleTrendResponse 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 DescribeHitRuleTrendResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeHitRuleTrendResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeHitRuleTrendResponseBody body); @Override DescribeHitRuleTrendResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeHitRuleTrendResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeHitRuleTrendResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeHitRuleTrendResponse 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(DescribeHitRuleTrendResponseBody body) { this.body = body; return this; } @Override public DescribeHitRuleTrendResponse build() { return new DescribeHitRuleTrendResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeHitRuleTrendResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeHitRuleTrendResponseBody} extends {@link TeaModel} * * <p>DescribeHitRuleTrendResponseBody</p> */ public class DescribeHitRuleTrendResponseBody 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 DescribeHitRuleTrendResponseBody(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 DescribeHitRuleTrendResponseBody 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(DescribeHitRuleTrendResponseBody 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>Response object</p> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } /** * <p>Indicates whether the operation was successful, where true means success.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder success(Boolean success) { this.success = success; return this; } public DescribeHitRuleTrendResponseBody build() { return new DescribeHitRuleTrendResponseBody(this); } } /** * * {@link DescribeHitRuleTrendResponseBody} extends {@link TeaModel} * * <p>DescribeHitRuleTrendResponseBody</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>50</p> */ public Builder num(Long num) { this.num = num; return this; } /** * <p>Scale</p> * * <strong>example:</strong> * <p>10.00%</p> */ public Builder scale(String scale) { this.scale = scale; return this; } public Data build() { return new Data(this); } } } /** * * {@link DescribeHitRuleTrendResponseBody} extends {@link TeaModel} * * <p>DescribeHitRuleTrendResponseBody</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>Display title</p> * * <strong>example:</strong> * <p>策略name</p> */ public Builder name(String name) { this.name = name; return this; } public Series build() { return new Series(this); } } } /** * * {@link DescribeHitRuleTrendResponseBody} extends {@link TeaModel} * * <p>DescribeHitRuleTrendResponseBody</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 DescribeHitRuleTrendResponseBody} extends {@link TeaModel} * * <p>DescribeHitRuleTrendResponseBody</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/DescribeInitDigRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeInitDigRequest} extends {@link RequestModel} * * <p>DescribeInitDigRequest</p> */ public class DescribeInitDigRequest 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("Type") @com.aliyun.core.annotation.Validation(required = true) private String type; private DescribeInitDigRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static DescribeInitDigRequest 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 type */ public String getType() { return this.type; } public static final class Builder extends Request.Builder<DescribeInitDigRequest, Builder> { private String lang; private String regId; private String type; private Builder() { super(); } private Builder(DescribeInitDigRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; this.type = request.type; } /** * <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; } /** * <p>Data source type</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>SAF_CONSOLE</p> */ public Builder type(String type) { this.putQueryParameter("Type", type); this.type = type; return this; } @Override public DescribeInitDigRequest build() { return new DescribeInitDigRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeInitDigResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeInitDigResponse} extends {@link TeaModel} * * <p>DescribeInitDigResponse</p> */ public class DescribeInitDigResponse 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 DescribeInitDigResponseBody body; private DescribeInitDigResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeInitDigResponse 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 DescribeInitDigResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeInitDigResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeInitDigResponseBody body); @Override DescribeInitDigResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeInitDigResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeInitDigResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeInitDigResponse 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(DescribeInitDigResponseBody body) { this.body = body; return this; } @Override public DescribeInitDigResponse build() { return new DescribeInitDigResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeInitDigResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeInitDigResponseBody} extends {@link TeaModel} * * <p>DescribeInitDigResponseBody</p> */ public class DescribeInitDigResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("ResultObject") private ResultObject resultObject; private DescribeInitDigResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeInitDigResponseBody 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(DescribeInitDigResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>ID of the request</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned result information</p> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } public DescribeInitDigResponseBody build() { return new DescribeInitDigResponseBody(this); } } /** * * {@link DescribeInitDigResponseBody} extends {@link TeaModel} * * <p>DescribeInitDigResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("TipInfo") private String tipInfo; private ResultObject(Builder builder) { this.tipInfo = builder.tipInfo; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return tipInfo */ public String getTipInfo() { return this.tipInfo; } public static final class Builder { private String tipInfo; private Builder() { } private Builder(ResultObject model) { this.tipInfo = model.tipInfo; } /** * <p>Prompt information</p> * * <strong>example:</strong> * <p>阿里云内部测试</p> */ public Builder tipInfo(String tipInfo) { this.tipInfo = tipInfo; 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/DescribeInputFeildCountByEventCodeRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeInputFeildCountByEventCodeRequest} extends {@link RequestModel} * * <p>DescribeInputFeildCountByEventCodeRequest</p> */ public class DescribeInputFeildCountByEventCodeRequest 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 DescribeInputFeildCountByEventCodeRequest(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 DescribeInputFeildCountByEventCodeRequest 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<DescribeInputFeildCountByEventCodeRequest, Builder> { private String lang; private String createType; private String eventCode; private String regId; private Builder() { super(); } private Builder(DescribeInputFeildCountByEventCodeRequest 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 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>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_ahqido8038</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 DescribeInputFeildCountByEventCodeRequest build() { return new DescribeInputFeildCountByEventCodeRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeInputFeildCountByEventCodeResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeInputFeildCountByEventCodeResponse} extends {@link TeaModel} * * <p>DescribeInputFeildCountByEventCodeResponse</p> */ public class DescribeInputFeildCountByEventCodeResponse 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 DescribeInputFeildCountByEventCodeResponseBody body; private DescribeInputFeildCountByEventCodeResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeInputFeildCountByEventCodeResponse 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 DescribeInputFeildCountByEventCodeResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeInputFeildCountByEventCodeResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeInputFeildCountByEventCodeResponseBody body); @Override DescribeInputFeildCountByEventCodeResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeInputFeildCountByEventCodeResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeInputFeildCountByEventCodeResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeInputFeildCountByEventCodeResponse 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(DescribeInputFeildCountByEventCodeResponseBody body) { this.body = body; return this; } @Override public DescribeInputFeildCountByEventCodeResponse build() { return new DescribeInputFeildCountByEventCodeResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeInputFeildCountByEventCodeResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeInputFeildCountByEventCodeResponseBody} extends {@link TeaModel} * * <p>DescribeInputFeildCountByEventCodeResponseBody</p> */ public class DescribeInputFeildCountByEventCodeResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeInputFeildCountByEventCodeResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeInputFeildCountByEventCodeResponseBody 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(DescribeInputFeildCountByEventCodeResponseBody 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 DescribeInputFeildCountByEventCodeResponseBody build() { return new DescribeInputFeildCountByEventCodeResponseBody(this); } } /** * * {@link DescribeInputFeildCountByEventCodeResponseBody} extends {@link TeaModel} * * <p>DescribeInputFeildCountByEventCodeResponseBody</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 quantity</p> * * <strong>example:</strong> * <p>true</p> */ public Builder limit(Boolean limit) { this.limit = limit; return this; } /** * <p>Maximum number of created items</p> * * <strong>example:</strong> * <p>100</p> */ public Builder maxTotalItem(Integer maxTotalItem) { this.maxTotalItem = maxTotalItem; return this; } /** * <p>Total number of items</p> * * <strong>example:</strong> * <p>8</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/DescribeListModelRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeListModelRequest} extends {@link RequestModel} * * <p>DescribeListModelRequest</p> */ public class DescribeListModelRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CurrentPage") private Long currentPage; @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 DescribeListModelRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeListModelRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return currentPage */ public Long getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Long getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeListModelRequest, Builder> { private Long currentPage; private Long pageSize; private String regId; private Builder() { super(); } private Builder(DescribeListModelRequest request) { super(request); this.currentPage = request.currentPage; this.pageSize = request.pageSize; this.regId = request.regId; } /** * <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>Number of items per page.</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 DescribeListModelRequest build() { return new DescribeListModelRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeListModelResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeListModelResponse} extends {@link TeaModel} * * <p>DescribeListModelResponse</p> */ public class DescribeListModelResponse 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 DescribeListModelResponseBody body; private DescribeListModelResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeListModelResponse 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 DescribeListModelResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeListModelResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeListModelResponseBody body); @Override DescribeListModelResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeListModelResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeListModelResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeListModelResponse 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(DescribeListModelResponseBody body) { this.body = body; return this; } @Override public DescribeListModelResponse build() { return new DescribeListModelResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeListModelResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeListModelResponseBody} extends {@link TeaModel} * * <p>DescribeListModelResponseBody</p> */ public class DescribeListModelResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("CurrentPage") private String currentPage; @com.aliyun.core.annotation.NameInMap("PageSize") private String pageSize; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("ResultObject") private java.util.List<ResultObject> resultObject; @com.aliyun.core.annotation.NameInMap("TotalItem") private String totalItem; @com.aliyun.core.annotation.NameInMap("TotalPage") private String totalPage; private DescribeListModelResponseBody(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 DescribeListModelResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public java.util.List<ResultObject> getResultObject() { return this.resultObject; } /** * @return totalItem */ public String getTotalItem() { return this.totalItem; } /** * @return totalPage */ public String getTotalPage() { return this.totalPage; } public static final class Builder { private String currentPage; private String pageSize; private String requestId; private java.util.List<ResultObject> resultObject; private String totalItem; private String totalPage; private Builder() { } private Builder(DescribeListModelResponseBody 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(String currentPage) { this.currentPage = currentPage; return this; } /** * <p>Number of items per page.</p> * * <strong>example:</strong> * <p>30</p> */ public Builder pageSize(String pageSize) { this.pageSize = pageSize; return this; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned data.</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } /** * <p>Total number of records.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder totalItem(String totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder totalPage(String totalPage) { this.totalPage = totalPage; return this; } public DescribeListModelResponseBody build() { return new DescribeListModelResponseBody(this); } } /** * * {@link DescribeListModelResponseBody} extends {@link TeaModel} * * <p>DescribeListModelResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("bucId") private String bucId; @com.aliyun.core.annotation.NameInMap("createTime") private String createTime; @com.aliyun.core.annotation.NameInMap("modelCode") private String modelCode; @com.aliyun.core.annotation.NameInMap("modelId") private String modelId; @com.aliyun.core.annotation.NameInMap("modelName") private String modelName; @com.aliyun.core.annotation.NameInMap("modelScene") private String modelScene; @com.aliyun.core.annotation.NameInMap("modelStatus") private String modelStatus; @com.aliyun.core.annotation.NameInMap("taskId") private String taskId; @com.aliyun.core.annotation.NameInMap("updateTime") private String updateTime; @com.aliyun.core.annotation.NameInMap("userId") private String userId; @com.aliyun.core.annotation.NameInMap("userLocalFileName") private String userLocalFileName; private ResultObject(Builder builder) { this.bucId = builder.bucId; this.createTime = builder.createTime; this.modelCode = builder.modelCode; this.modelId = builder.modelId; this.modelName = builder.modelName; this.modelScene = builder.modelScene; this.modelStatus = builder.modelStatus; this.taskId = builder.taskId; this.updateTime = builder.updateTime; this.userId = builder.userId; this.userLocalFileName = builder.userLocalFileName; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return bucId */ public String getBucId() { return this.bucId; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return modelCode */ public String getModelCode() { return this.modelCode; } /** * @return modelId */ public String getModelId() { return this.modelId; } /** * @return modelName */ public String getModelName() { return this.modelName; } /** * @return modelScene */ public String getModelScene() { return this.modelScene; } /** * @return modelStatus */ public String getModelStatus() { return this.modelStatus; } /** * @return taskId */ public String getTaskId() { return this.taskId; } /** * @return updateTime */ public String getUpdateTime() { return this.updateTime; } /** * @return userId */ public String getUserId() { return this.userId; } /** * @return userLocalFileName */ public String getUserLocalFileName() { return this.userLocalFileName; } public static final class Builder { private String bucId; private String createTime; private String modelCode; private String modelId; private String modelName; private String modelScene; private String modelStatus; private String taskId; private String updateTime; private String userId; private String userLocalFileName; private Builder() { } private Builder(ResultObject model) { this.bucId = model.bucId; this.createTime = model.createTime; this.modelCode = model.modelCode; this.modelId = model.modelId; this.modelName = model.modelName; this.modelScene = model.modelScene; this.modelStatus = model.modelStatus; this.taskId = model.taskId; this.updateTime = model.updateTime; this.userId = model.userId; this.userLocalFileName = model.userLocalFileName; } /** * <p>Uploader ID.</p> * * <strong>example:</strong> * <p>011786</p> */ public Builder bucId(String bucId) { this.bucId = bucId; return this; } /** * <p>Creation time.</p> * * <strong>example:</strong> * <p>2025-05-07T02:26:01Z</p> */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * <p>Model code.</p> * * <strong>example:</strong> * <p>code</p> */ public Builder modelCode(String modelCode) { this.modelCode = modelCode; return this; } /** * <p>Unique identifier of the model in use.</p> * * <strong>example:</strong> * <p>qwen-plus</p> */ public Builder modelId(String modelId) { this.modelId = modelId; return this; } /** * <p>Model name.</p> * * <strong>example:</strong> * <p>custom_model</p> */ public Builder modelName(String modelName) { this.modelName = modelName; return this; } /** * <p>Model scenario.</p> * * <strong>example:</strong> * <p>custom_scene</p> */ public Builder modelScene(String modelScene) { this.modelScene = modelScene; return this; } /** * <p>Model status, values: -<strong>ENABLED</strong>: Enabled-<strong>DISABLED</strong>: Disabled</p> * * <strong>example:</strong> * <p>ENABLED</p> */ public Builder modelStatus(String modelStatus) { this.modelStatus = modelStatus; return this; } /** * <p>Task ID.</p> * * <strong>example:</strong> * <p>0c8a3799-5ac8-434b-b255-e06edb35c05f</p> */ public Builder taskId(String taskId) { this.taskId = taskId; return this; } /** * <p>Last update time of the model.</p> * * <strong>example:</strong> * <p>2024-11-18T02:07:00Z</p> */ public Builder updateTime(String updateTime) { this.updateTime = updateTime; return this; } /** * <p>User ID.</p> * * <strong>example:</strong> * <p>1806507582222226</p> */ public Builder userId(String userId) { this.userId = userId; return this; } /** * <p>File name.</p> * * <strong>example:</strong> * <p>saf-ai-1662519103706.csv</p> */ public Builder userLocalFileName(String userLocalFileName) { this.userLocalFileName = userLocalFileName; 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/DescribeListPocRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeListPocRequest} extends {@link RequestModel} * * <p>DescribeListPocRequest</p> */ public class DescribeListPocRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CurrentPage") private Long currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") private 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 DescribeListPocRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.lang = builder.lang; this.pageSize = builder.pageSize; this.regId = builder.regId; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static DescribeListPocRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return currentPage */ public Long getCurrentPage() { return this.currentPage; } /** * @return lang */ public String getLang() { return this.lang; } /** * @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<DescribeListPocRequest, Builder> { private Long currentPage; private String lang; private Long pageSize; private String regId; private String type; private Builder() { super(); } private Builder(DescribeListPocRequest request) { super(request); this.currentPage = request.currentPage; this.lang = request.lang; this.pageSize = request.pageSize; this.regId = request.regId; this.type = request.type; } /** * <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>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Page size.</p> * * <strong>example:</strong> * <p>30</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>SAF_CONSOLE</p> */ public Builder type(String type) { this.putQueryParameter("Type", type); this.type = type; return this; } @Override public DescribeListPocRequest build() { return new DescribeListPocRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeListPocResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeListPocResponse} extends {@link TeaModel} * * <p>DescribeListPocResponse</p> */ public class DescribeListPocResponse 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 DescribeListPocResponseBody body; private DescribeListPocResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeListPocResponse 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 DescribeListPocResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeListPocResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeListPocResponseBody body); @Override DescribeListPocResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeListPocResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeListPocResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeListPocResponse 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(DescribeListPocResponseBody body) { this.body = body; return this; } @Override public DescribeListPocResponse build() { return new DescribeListPocResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeListPocResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeListPocResponseBody} extends {@link TeaModel} * * <p>DescribeListPocResponseBody</p> */ public class DescribeListPocResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Code") private String code; @com.aliyun.core.annotation.NameInMap("CurrentPage") private String 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 String 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 String totalItem; @com.aliyun.core.annotation.NameInMap("TotalPage") private String totalPage; private DescribeListPocResponseBody(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.totalItem = builder.totalItem; this.totalPage = builder.totalPage; } public static Builder builder() { return new Builder(); } public static DescribeListPocResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return code */ public String getCode() { return this.code; } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return httpStatusCode */ public String getHttpStatusCode() { return this.httpStatusCode; } /** * @return message */ public String getMessage() { return this.message; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } /** * @return totalItem */ public String getTotalItem() { return this.totalItem; } /** * @return totalPage */ public String getTotalPage() { return this.totalPage; } public static final class Builder { private String code; private String currentPage; private String httpStatusCode; private String message; private String pageSize; private String requestId; private Boolean resultObject; private String totalItem; private String totalPage; private Builder() { } private Builder(DescribeListPocResponseBody 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.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.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(String 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>Return message.</p> * * <strong>example:</strong> * <p>successful</p> */ public Builder message(String message) { this.message = message; return this; } /** * <p>Page size.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(String pageSize) { this.pageSize = pageSize; return this; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Return result.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } /** * <p>Total number of items returned.</p> * * <strong>example:</strong> * <p>0</p> */ public Builder totalItem(String totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>0</p> */ public Builder totalPage(String totalPage) { this.totalPage = totalPage; return this; } public DescribeListPocResponseBody build() { return new DescribeListPocResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeLoanExecListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeLoanExecListRequest} extends {@link RequestModel} * * <p>DescribeLoanExecListRequest</p> */ public class DescribeLoanExecListRequest 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("batchNo") private String batchNo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("currentPage") private String currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("monitorObj") private String monitorObj; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("monitorStatus") private String monitorStatus; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") private String pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeLoanExecListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.batchNo = builder.batchNo; this.currentPage = builder.currentPage; this.monitorObj = builder.monitorObj; this.monitorStatus = builder.monitorStatus; this.pageSize = builder.pageSize; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeLoanExecListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return batchNo */ public String getBatchNo() { return this.batchNo; } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return monitorObj */ public String getMonitorObj() { return this.monitorObj; } /** * @return monitorStatus */ public String getMonitorStatus() { return this.monitorStatus; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeLoanExecListRequest, Builder> { private String lang; private String batchNo; private String currentPage; private String monitorObj; private String monitorStatus; private String pageSize; private String regId; private Builder() { super(); } private Builder(DescribeLoanExecListRequest request) { super(request); this.lang = request.lang; this.batchNo = request.batchNo; this.currentPage = request.currentPage; this.monitorObj = request.monitorObj; this.monitorStatus = request.monitorStatus; this.pageSize = request.pageSize; 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>Import batch number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder batchNo(String batchNo) { this.putQueryParameter("batchNo", batchNo); this.batchNo = batchNo; 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>Monitoring metric data.</p> * * <strong>example:</strong> * <p>de_afghcf6411</p> */ public Builder monitorObj(String monitorObj) { this.putQueryParameter("monitorObj", monitorObj); this.monitorObj = monitorObj; return this; } /** * <p>Status</p> * * <strong>example:</strong> * <p>WAIT</p> */ public Builder monitorStatus(String monitorStatus) { this.putQueryParameter("monitorStatus", monitorStatus); this.monitorStatus = monitorStatus; return this; } /** * <p>Page size, with a default value of 10.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(String pageSize) { this.putQueryParameter("pageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeLoanExecListRequest build() { return new DescribeLoanExecListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeLoanExecListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeLoanExecListResponse} extends {@link TeaModel} * * <p>DescribeLoanExecListResponse</p> */ public class DescribeLoanExecListResponse 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 DescribeLoanExecListResponseBody body; private DescribeLoanExecListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeLoanExecListResponse 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 DescribeLoanExecListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeLoanExecListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeLoanExecListResponseBody body); @Override DescribeLoanExecListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeLoanExecListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeLoanExecListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeLoanExecListResponse 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(DescribeLoanExecListResponseBody body) { this.body = body; return this; } @Override public DescribeLoanExecListResponse build() { return new DescribeLoanExecListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeLoanExecListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeLoanExecListResponseBody} extends {@link TeaModel} * * <p>DescribeLoanExecListResponseBody</p> */ public class DescribeLoanExecListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("currentPage") private Integer currentPage; @com.aliyun.core.annotation.NameInMap("pageSize") private Integer pageSize; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; @com.aliyun.core.annotation.NameInMap("totalItem") private Integer totalItem; @com.aliyun.core.annotation.NameInMap("totalPage") private Integer totalPage; private DescribeLoanExecListResponseBody(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 DescribeLoanExecListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } /** * @return totalItem */ public Integer getTotalItem() { return this.totalItem; } /** * @return totalPage */ public Integer getTotalPage() { return this.totalPage; } public static final class Builder { private String requestId; private Integer currentPage; private Integer pageSize; private Boolean resultObject; private Integer totalItem; private Integer totalPage; private Builder() { } private Builder(DescribeLoanExecListResponseBody model) { this.requestId = model.requestId; this.currentPage = model.currentPage; this.pageSize = model.pageSize; this.resultObject = model.resultObject; this.totalItem = model.totalItem; this.totalPage = model.totalPage; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Current page number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>Page size, with a default value of 10.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>Return object.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } /** * <p>Total number of items.</p> * * <strong>example:</strong> * <p>6</p> */ public Builder totalItem(Integer totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } public DescribeLoanExecListResponseBody build() { return new DescribeLoanExecListResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeLoanTaskListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeLoanTaskListRequest} extends {@link RequestModel} * * <p>DescribeLoanTaskListRequest</p> */ public class DescribeLoanTaskListRequest 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("batchNo") private String batchNo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("currentPage") private String currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("monitorStatus") private String monitorStatus; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") private String pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeLoanTaskListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.batchNo = builder.batchNo; this.currentPage = builder.currentPage; this.monitorStatus = builder.monitorStatus; this.pageSize = builder.pageSize; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeLoanTaskListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return batchNo */ public String getBatchNo() { return this.batchNo; } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return monitorStatus */ public String getMonitorStatus() { return this.monitorStatus; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeLoanTaskListRequest, Builder> { private String lang; private String batchNo; private String currentPage; private String monitorStatus; private String pageSize; private String regId; private Builder() { super(); } private Builder(DescribeLoanTaskListRequest request) { super(request); this.lang = request.lang; this.batchNo = request.batchNo; this.currentPage = request.currentPage; this.monitorStatus = request.monitorStatus; this.pageSize = request.pageSize; 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>Import batch number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder batchNo(String batchNo) { this.putQueryParameter("batchNo", batchNo); this.batchNo = batchNo; return this; } /** * <p>Current page number. Default is: 1.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(String currentPage) { this.putQueryParameter("currentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Task status.</p> * * <strong>example:</strong> * <p>WAIT</p> */ public Builder monitorStatus(String monitorStatus) { this.putQueryParameter("monitorStatus", monitorStatus); this.monitorStatus = monitorStatus; return this; } /** * <p>Page size, default value is 10.</p> * * <strong>example:</strong> * <p>20</p> */ public Builder pageSize(String pageSize) { this.putQueryParameter("pageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>Region code.</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } @Override public DescribeLoanTaskListRequest build() { return new DescribeLoanTaskListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeLoanTaskListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeLoanTaskListResponse} extends {@link TeaModel} * * <p>DescribeLoanTaskListResponse</p> */ public class DescribeLoanTaskListResponse 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 DescribeLoanTaskListResponseBody body; private DescribeLoanTaskListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeLoanTaskListResponse 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 DescribeLoanTaskListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeLoanTaskListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeLoanTaskListResponseBody body); @Override DescribeLoanTaskListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeLoanTaskListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeLoanTaskListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeLoanTaskListResponse 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(DescribeLoanTaskListResponseBody body) { this.body = body; return this; } @Override public DescribeLoanTaskListResponse build() { return new DescribeLoanTaskListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeLoanTaskListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeLoanTaskListResponseBody} extends {@link TeaModel} * * <p>DescribeLoanTaskListResponseBody</p> */ public class DescribeLoanTaskListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("currentPage") private Integer currentPage; @com.aliyun.core.annotation.NameInMap("pageSize") private Integer pageSize; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; @com.aliyun.core.annotation.NameInMap("totalItem") private Integer totalItem; @com.aliyun.core.annotation.NameInMap("totalPage") private Integer totalPage; private DescribeLoanTaskListResponseBody(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 DescribeLoanTaskListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return resultObject */ public Boolean getResultObject() { return this.resultObject; } /** * @return totalItem */ public Integer getTotalItem() { return this.totalItem; } /** * @return totalPage */ public Integer getTotalPage() { return this.totalPage; } public static final class Builder { private String requestId; private Integer currentPage; private Integer pageSize; private Boolean resultObject; private Integer totalItem; private Integer totalPage; private Builder() { } private Builder(DescribeLoanTaskListResponseBody 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> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } /** * <p>Total number of items.</p> * * <strong>example:</strong> * <p>6</p> */ public Builder totalItem(Integer totalItem) { this.totalItem = totalItem; return this; } /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } public DescribeLoanTaskListResponseBody build() { return new DescribeLoanTaskListResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeMarkPageRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeMarkPageRequest} extends {@link RequestModel} * * <p>DescribeMarkPageRequest</p> */ public class DescribeMarkPageRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("currentPage") private String currentPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("direction") private String direction; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("isPage") private Boolean isPage; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("order") private String order; @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("taskLogId") private String taskLogId; private DescribeMarkPageRequest(Builder builder) { super(builder); this.lang = builder.lang; this.currentPage = builder.currentPage; this.direction = builder.direction; this.isPage = builder.isPage; this.order = builder.order; this.pageSize = builder.pageSize; this.regId = builder.regId; this.taskLogId = builder.taskLogId; } public static Builder builder() { return new Builder(); } public static DescribeMarkPageRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return direction */ public String getDirection() { return this.direction; } /** * @return isPage */ public Boolean getIsPage() { return this.isPage; } /** * @return order */ public String getOrder() { return this.order; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return taskLogId */ public String getTaskLogId() { return this.taskLogId; } public static final class Builder extends Request.Builder<DescribeMarkPageRequest, Builder> { private String lang; private String currentPage; private String direction; private Boolean isPage; private String order; private String pageSize; private String regId; private String taskLogId; private Builder() { super(); } private Builder(DescribeMarkPageRequest request) { super(request); this.lang = request.lang; this.currentPage = request.currentPage; this.direction = request.direction; this.isPage = request.isPage; this.order = request.order; this.pageSize = request.pageSize; this.regId = request.regId; this.taskLogId = request.taskLogId; } /** * <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Current page number.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder currentPage(String currentPage) { this.putQueryParameter("currentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Order direction.</p> * * <strong>example:</strong> * <p>0</p> */ public Builder direction(String direction) { this.putQueryParameter("direction", direction); this.direction = direction; return this; } /** * <p>Whether to paginate.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder isPage(Boolean isPage) { this.putQueryParameter("isPage", isPage); this.isPage = isPage; return this; } /** * <p>Sorting condition.</p> * * <strong>example:</strong> * <p>asc</p> */ public Builder order(String order) { this.putQueryParameter("order", order); this.order = order; 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>Task ID.</p> * * <strong>example:</strong> * <p>443</p> */ public Builder taskLogId(String taskLogId) { this.putQueryParameter("taskLogId", taskLogId); this.taskLogId = taskLogId; return this; } @Override public DescribeMarkPageRequest build() { return new DescribeMarkPageRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeMarkPageResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeMarkPageResponse} extends {@link TeaModel} * * <p>DescribeMarkPageResponse</p> */ public class DescribeMarkPageResponse 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 DescribeMarkPageResponseBody body; private DescribeMarkPageResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeMarkPageResponse 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 DescribeMarkPageResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeMarkPageResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeMarkPageResponseBody body); @Override DescribeMarkPageResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeMarkPageResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeMarkPageResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeMarkPageResponse 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(DescribeMarkPageResponseBody body) { this.body = body; return this; } @Override public DescribeMarkPageResponse build() { return new DescribeMarkPageResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeMarkPageResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeMarkPageResponseBody} extends {@link TeaModel} * * <p>DescribeMarkPageResponseBody</p> */ public class DescribeMarkPageResponseBody 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 DescribeMarkPageResponseBody(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 DescribeMarkPageResponseBody 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(DescribeMarkPageResponseBody 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 DescribeMarkPageResponseBody build() { return new DescribeMarkPageResponseBody(this); } } /** * * {@link DescribeMarkPageResponseBody} extends {@link TeaModel} * * <p>DescribeMarkPageResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("fieldName") private String fieldName; @com.aliyun.core.annotation.NameInMap("fieldValue") private String fieldValue; @com.aliyun.core.annotation.NameInMap("id") private Long id; @com.aliyun.core.annotation.NameInMap("markType") private String markType; private ResultObject(Builder builder) { this.fieldName = builder.fieldName; this.fieldValue = builder.fieldValue; this.id = builder.id; this.markType = builder.markType; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return fieldName */ public String getFieldName() { return this.fieldName; } /** * @return fieldValue */ public String getFieldValue() { return this.fieldValue; } /** * @return id */ public Long getId() { return this.id; } /** * @return markType */ public String getMarkType() { return this.markType; } public static final class Builder { private String fieldName; private String fieldValue; private Long id; private String markType; private Builder() { } private Builder(ResultObject model) { this.fieldName = model.fieldName; this.fieldValue = model.fieldValue; this.id = model.id; this.markType = model.markType; } /** * <p>Field name.</p> * * <strong>example:</strong> * <p>mobile</p> */ public Builder fieldName(String fieldName) { this.fieldName = fieldName; return this; } /** * <p>Field value.</p> * * <strong>example:</strong> * <p>18000000000</p> */ public Builder fieldValue(String fieldValue) { this.fieldValue = fieldValue; return this; } /** * <p>Primary key ID.</p> * * <strong>example:</strong> * <p>2793</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Mark (0 No / 1 Yes).</p> * * <strong>example:</strong> * <p>1</p> */ public Builder markType(String markType) { this.markType = markType; 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/DescribeMenuPermissionRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeMenuPermissionRequest} extends {@link RequestModel} * * <p>DescribeMenuPermissionRequest</p> */ public class DescribeMenuPermissionRequest 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("permissionType") private String permissionType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; private DescribeMenuPermissionRequest(Builder builder) { super(builder); this.lang = builder.lang; this.permissionType = builder.permissionType; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeMenuPermissionRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return permissionType */ public String getPermissionType() { return this.permissionType; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeMenuPermissionRequest, Builder> { private String lang; private String permissionType; private String regId; private Builder() { super(); } private Builder(DescribeMenuPermissionRequest request) { super(request); this.lang = request.lang; this.permissionType = request.permissionType; 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>Permission type</p> * * <strong>example:</strong> * <p>MENU</p> */ public Builder permissionType(String permissionType) { this.putQueryParameter("permissionType", permissionType); this.permissionType = permissionType; 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 DescribeMenuPermissionRequest build() { return new DescribeMenuPermissionRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeMenuPermissionResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeMenuPermissionResponse} extends {@link TeaModel} * * <p>DescribeMenuPermissionResponse</p> */ public class DescribeMenuPermissionResponse 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 DescribeMenuPermissionResponseBody body; private DescribeMenuPermissionResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeMenuPermissionResponse 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 DescribeMenuPermissionResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeMenuPermissionResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeMenuPermissionResponseBody body); @Override DescribeMenuPermissionResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeMenuPermissionResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeMenuPermissionResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeMenuPermissionResponse 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(DescribeMenuPermissionResponseBody body) { this.body = body; return this; } @Override public DescribeMenuPermissionResponse build() { return new DescribeMenuPermissionResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeMenuPermissionResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeMenuPermissionResponseBody} extends {@link TeaModel} * * <p>DescribeMenuPermissionResponseBody</p> */ public class DescribeMenuPermissionResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private Boolean resultObject; private DescribeMenuPermissionResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeMenuPermissionResponseBody 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(DescribeMenuPermissionResponseBody 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 DescribeMenuPermissionResponseBody build() { return new DescribeMenuPermissionResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeModelDetailsByIdRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeModelDetailsByIdRequest} extends {@link RequestModel} * * <p>DescribeModelDetailsByIdRequest</p> */ public class DescribeModelDetailsByIdRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ModelId") @com.aliyun.core.annotation.Validation(required = true) private String modelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("RegId") private String regId; private DescribeModelDetailsByIdRequest(Builder builder) { super(builder); this.modelId = builder.modelId; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeModelDetailsByIdRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return modelId */ public String getModelId() { return this.modelId; } /** * @return regId */ public String getRegId() { return this.regId; } public static final class Builder extends Request.Builder<DescribeModelDetailsByIdRequest, Builder> { private String modelId; private String regId; private Builder() { super(); } private Builder(DescribeModelDetailsByIdRequest request) { super(request); this.modelId = request.modelId; this.regId = request.regId; } /** * <p>Model ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>20619</p> */ public Builder modelId(String modelId) { this.putQueryParameter("ModelId", modelId); this.modelId = modelId; 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 DescribeModelDetailsByIdRequest build() { return new DescribeModelDetailsByIdRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeModelDetailsByIdResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeModelDetailsByIdResponse} extends {@link TeaModel} * * <p>DescribeModelDetailsByIdResponse</p> */ public class DescribeModelDetailsByIdResponse 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 DescribeModelDetailsByIdResponseBody body; private DescribeModelDetailsByIdResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeModelDetailsByIdResponse 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 DescribeModelDetailsByIdResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeModelDetailsByIdResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeModelDetailsByIdResponseBody body); @Override DescribeModelDetailsByIdResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeModelDetailsByIdResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeModelDetailsByIdResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeModelDetailsByIdResponse 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(DescribeModelDetailsByIdResponseBody body) { this.body = body; return this; } @Override public DescribeModelDetailsByIdResponse build() { return new DescribeModelDetailsByIdResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeModelDetailsByIdResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeModelDetailsByIdResponseBody} extends {@link TeaModel} * * <p>DescribeModelDetailsByIdResponseBody</p> */ public class DescribeModelDetailsByIdResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("ResultObject") private java.util.List<ResultObject> resultObject; private DescribeModelDetailsByIdResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeModelDetailsByIdResponseBody 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(DescribeModelDetailsByIdResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned result information</p> */ public Builder resultObject(java.util.List<ResultObject> resultObject) { this.resultObject = resultObject; return this; } public DescribeModelDetailsByIdResponseBody build() { return new DescribeModelDetailsByIdResponseBody(this); } } /** * * {@link DescribeModelDetailsByIdResponseBody} extends {@link TeaModel} * * <p>DescribeModelDetailsByIdResponseBody</p> */ public static class ResultObject extends TeaModel { @com.aliyun.core.annotation.NameInMap("modelEffectEvaluation") private String modelEffectEvaluation; private ResultObject(Builder builder) { this.modelEffectEvaluation = builder.modelEffectEvaluation; } public static Builder builder() { return new Builder(); } public static ResultObject create() { return builder().build(); } /** * @return modelEffectEvaluation */ public String getModelEffectEvaluation() { return this.modelEffectEvaluation; } public static final class Builder { private String modelEffectEvaluation; private Builder() { } private Builder(ResultObject model) { this.modelEffectEvaluation = model.modelEffectEvaluation; } /** * <p>Model prediction result.</p> * * <strong>example:</strong> * <p>{&quot;AUC&quot;:0.9895246624946594,&quot;Count&quot;:2489,&quot;DecisionMark&quot;:[0.0,0.0010000000474974513,0.05287817938420348,0.0]}</p> */ public Builder modelEffectEvaluation(String modelEffectEvaluation) { this.modelEffectEvaluation = modelEffectEvaluation; 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/DescribeModelOssPolicyRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeModelOssPolicyRequest} extends {@link RequestModel} * * <p>DescribeModelOssPolicyRequest</p> */ public class DescribeModelOssPolicyRequest 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 DescribeModelOssPolicyRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeModelOssPolicyRequest 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<DescribeModelOssPolicyRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeModelOssPolicyRequest 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 DescribeModelOssPolicyRequest build() { return new DescribeModelOssPolicyRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeModelOssPolicyResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeModelOssPolicyResponse} extends {@link TeaModel} * * <p>DescribeModelOssPolicyResponse</p> */ public class DescribeModelOssPolicyResponse 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 DescribeModelOssPolicyResponseBody body; private DescribeModelOssPolicyResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeModelOssPolicyResponse 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 DescribeModelOssPolicyResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeModelOssPolicyResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeModelOssPolicyResponseBody body); @Override DescribeModelOssPolicyResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeModelOssPolicyResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeModelOssPolicyResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeModelOssPolicyResponse 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(DescribeModelOssPolicyResponseBody body) { this.body = body; return this; } @Override public DescribeModelOssPolicyResponse build() { return new DescribeModelOssPolicyResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeModelOssPolicyResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeModelOssPolicyResponseBody} extends {@link TeaModel} * * <p>DescribeModelOssPolicyResponseBody</p> */ public class DescribeModelOssPolicyResponseBody 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("Message") private String message; @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("resultObject") private Boolean resultObject; private DescribeModelOssPolicyResponseBody(Builder builder) { this.accessId = builder.accessId; this.host = builder.host; this.key = builder.key; this.message = builder.message; this.policy = builder.policy; this.requestId = builder.requestId; this.signature = builder.signature; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeModelOssPolicyResponseBody 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 message */ public String getMessage() { return this.message; } /** * @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 resultObject */ public Boolean getResultObject() { return this.resultObject; } public static final class Builder { private String accessId; private String host; private String key; private String message; private String policy; private String requestId; private String signature; private Boolean resultObject; private Builder() { } private Builder(DescribeModelOssPolicyResponseBody model) { this.accessId = model.accessId; this.host = model.host; this.key = model.key; this.message = model.message; this.policy = model.policy; this.requestId = model.requestId; this.signature = model.signature; this.resultObject = model.resultObject; } /** * <p>Access ID for OSS.</p> * * <strong>example:</strong> * <p>LTAxxxxxxxxxxxx</p> */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * <p>Address.</p> * * <strong>example:</strong> * <p><a href="https://xxxxxxxx-xxxxxxx.aliyuncs.com">https://xxxxxxxx-xxxxxxx.aliyuncs.com</a></p> */ public Builder host(String host) { this.host = host; return this; } /** * <p>OSS access key secret.</p> * * <strong>example:</strong> * <p>saf/a/uid/ccc</p> */ public Builder key(String key) { this.key = key; return this; } /** * <p>Error message.</p> * * <strong>example:</strong> * <p>success</p> */ public Builder message(String message) { this.message = message; return this; } /** * <p>The policy for user form upload, which is a base64-encoded string.</p> * * <strong>example:</strong> * <p>eyJleHBpxxxxxx</p> */ public Builder policy(String policy) { this.policy = policy; return this; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Signature information.</p> * * <strong>example:</strong> * <p>tzl1wL4q8rR/xxxxxx</p> */ public Builder signature(String signature) { this.signature = signature; return this; } /** * <p>Return result.</p> * * <strong>example:</strong> * <p>true</p> */ public Builder resultObject(Boolean resultObject) { this.resultObject = resultObject; return this; } public DescribeModelOssPolicyResponseBody build() { return new DescribeModelOssPolicyResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeMonitorTaskLimitRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeMonitorTaskLimitRequest} extends {@link RequestModel} * * <p>DescribeMonitorTaskLimitRequest</p> */ public class DescribeMonitorTaskLimitRequest 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 DescribeMonitorTaskLimitRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; } public static Builder builder() { return new Builder(); } public static DescribeMonitorTaskLimitRequest 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<DescribeMonitorTaskLimitRequest, Builder> { private String lang; private String regId; private Builder() { super(); } private Builder(DescribeMonitorTaskLimitRequest 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 DescribeMonitorTaskLimitRequest build() { return new DescribeMonitorTaskLimitRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeMonitorTaskLimitResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeMonitorTaskLimitResponse} extends {@link TeaModel} * * <p>DescribeMonitorTaskLimitResponse</p> */ public class DescribeMonitorTaskLimitResponse 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 DescribeMonitorTaskLimitResponseBody body; private DescribeMonitorTaskLimitResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeMonitorTaskLimitResponse 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 DescribeMonitorTaskLimitResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeMonitorTaskLimitResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeMonitorTaskLimitResponseBody body); @Override DescribeMonitorTaskLimitResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeMonitorTaskLimitResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeMonitorTaskLimitResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeMonitorTaskLimitResponse 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(DescribeMonitorTaskLimitResponseBody body) { this.body = body; return this; } @Override public DescribeMonitorTaskLimitResponse build() { return new DescribeMonitorTaskLimitResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeMonitorTaskLimitResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeMonitorTaskLimitResponseBody} extends {@link TeaModel} * * <p>DescribeMonitorTaskLimitResponseBody</p> */ public class DescribeMonitorTaskLimitResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("resultObject") private ResultObject resultObject; private DescribeMonitorTaskLimitResponseBody(Builder builder) { this.requestId = builder.requestId; this.resultObject = builder.resultObject; } public static Builder builder() { return new Builder(); } public static DescribeMonitorTaskLimitResponseBody 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(DescribeMonitorTaskLimitResponseBody model) { this.requestId = model.requestId; this.resultObject = model.resultObject; } /** * <p>Request ID.</p> * * <strong>example:</strong> * <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Returned object</p> */ public Builder resultObject(ResultObject resultObject) { this.resultObject = resultObject; return this; } public DescribeMonitorTaskLimitResponseBody build() { return new DescribeMonitorTaskLimitResponseBody(this); } } /** * * {@link DescribeMonitorTaskLimitResponseBody} extends {@link TeaModel} * * <p>DescribeMonitorTaskLimitResponseBody</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 the maximum limit has been reached</p> * * <strong>example:</strong> * <p>false</p> */ public Builder limit(Boolean limit) { this.limit = limit; return this; } /** * <p>Maximum number of items</p> * * <strong>example:</strong> * <p>1000</p> */ public Builder maxTotalItem(Integer maxTotalItem) { this.maxTotalItem = maxTotalItem; return this; } /** * <p>Total number of items</p> * * <strong>example:</strong> * <p>5</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/DescribeNameListDownloadUrlRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeNameListDownloadUrlRequest} extends {@link RequestModel} * * <p>DescribeNameListDownloadUrlRequest</p> */ public class DescribeNameListDownloadUrlRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Lang") private String lang; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("regId") private String regId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("variableId") @com.aliyun.core.annotation.Validation(required = true) private Long variableId; private DescribeNameListDownloadUrlRequest(Builder builder) { super(builder); this.lang = builder.lang; this.regId = builder.regId; this.variableId = builder.variableId; } public static Builder builder() { return new Builder(); } public static DescribeNameListDownloadUrlRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return regId */ public String getRegId() { return this.regId; } /** * @return variableId */ public Long getVariableId() { return this.variableId; } public static final class Builder extends Request.Builder<DescribeNameListDownloadUrlRequest, Builder> { private String lang; private String regId; private Long variableId; private Builder() { super(); } private Builder(DescribeNameListDownloadUrlRequest request) { super(request); this.lang = request.lang; this.regId = request.regId; this.variableId = request.variableId; } /** * <p>Set the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>zh</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Region code</p> * * <strong>example:</strong> * <p>cn-hangzhou</p> */ public Builder regId(String regId) { this.putQueryParameter("regId", regId); this.regId = regId; return this; } /** * <p>Variable ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>762</p> */ public Builder variableId(Long variableId) { this.putQueryParameter("variableId", variableId); this.variableId = variableId; return this; } @Override public DescribeNameListDownloadUrlRequest build() { return new DescribeNameListDownloadUrlRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListDownloadUrlResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xtee20210910.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeNameListDownloadUrlResponse} extends {@link TeaModel} * * <p>DescribeNameListDownloadUrlResponse</p> */ public class DescribeNameListDownloadUrlResponse 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 DescribeNameListDownloadUrlResponseBody body; private DescribeNameListDownloadUrlResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeNameListDownloadUrlResponse 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 DescribeNameListDownloadUrlResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeNameListDownloadUrlResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeNameListDownloadUrlResponseBody body); @Override DescribeNameListDownloadUrlResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeNameListDownloadUrlResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeNameListDownloadUrlResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeNameListDownloadUrlResponse 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(DescribeNameListDownloadUrlResponseBody body) { this.body = body; return this; } @Override public DescribeNameListDownloadUrlResponse build() { return new DescribeNameListDownloadUrlResponse(this); } } }