All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.qualitycheck20190115.models.ListRulesResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.qualitycheck20190115.models;

import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link ListRulesResponseBody} extends {@link TeaModel}
 *
 * 

ListRulesResponseBody

*/ public class ListRulesResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Count") private Integer count; @NameInMap("Data") private java.util.List < Data> data; @NameInMap("Message") private String message; @NameInMap("PageNumber") private Integer pageNumber; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private ListRulesResponseBody(Builder builder) { this.code = builder.code; this.count = builder.count; this.data = builder.data; this.message = builder.message; this.pageNumber = builder.pageNumber; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static ListRulesResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return count */ public Integer getCount() { return this.count; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return pageNumber */ public Integer getPageNumber() { return this.pageNumber; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Integer count; private java.util.List < Data> data; private String message; private Integer pageNumber; private Integer pageSize; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Count. */ public Builder count(Integer count) { this.count = count; return this; } /** * Data. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * PageNumber. */ public Builder pageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public ListRulesResponseBody build() { return new ListRulesResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("BusinessCategoryNameList") private java.util.List < String > businessCategoryNameList; @NameInMap("Comments") private String comments; @NameInMap("CreateTime") private String createTime; @NameInMap("Name") private String name; @NameInMap("Rid") private Long rid; @NameInMap("RuleType") private Integer ruleType; @NameInMap("Type") private Integer type; @NameInMap("TypeName") private String typeName; private Data(Builder builder) { this.businessCategoryNameList = builder.businessCategoryNameList; this.comments = builder.comments; this.createTime = builder.createTime; this.name = builder.name; this.rid = builder.rid; this.ruleType = builder.ruleType; this.type = builder.type; this.typeName = builder.typeName; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return businessCategoryNameList */ public java.util.List < String > getBusinessCategoryNameList() { return this.businessCategoryNameList; } /** * @return comments */ public String getComments() { return this.comments; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return name */ public String getName() { return this.name; } /** * @return rid */ public Long getRid() { return this.rid; } /** * @return ruleType */ public Integer getRuleType() { return this.ruleType; } /** * @return type */ public Integer getType() { return this.type; } /** * @return typeName */ public String getTypeName() { return this.typeName; } public static final class Builder { private java.util.List < String > businessCategoryNameList; private String comments; private String createTime; private String name; private Long rid; private Integer ruleType; private Integer type; private String typeName; /** * BusinessCategoryNameList. */ public Builder businessCategoryNameList(java.util.List < String > businessCategoryNameList) { this.businessCategoryNameList = businessCategoryNameList; return this; } /** * Comments. */ public Builder comments(String comments) { this.comments = comments; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * Rid. */ public Builder rid(Long rid) { this.rid = rid; return this; } /** * RuleType. */ public Builder ruleType(Integer ruleType) { this.ruleType = ruleType; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } /** * TypeName. */ public Builder typeName(String typeName) { this.typeName = typeName; return this; } public Data build() { return new Data(this); } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy