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

com.antgroup.antchain.openapi.deps.models.QueryConfigGlobalRequest Maven / Gradle / Ivy

There is a newer version: 3.2.40
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;

import com.aliyun.tea.*;

public class QueryConfigGlobalRequest extends TeaModel {
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("tenant")
    public String tenant;

    // 模板参数保密级别
    @NameInMap("data_level")
    public String dataLevel;

    // 参数名
    @NameInMap("key")
    public String key;

    // 排序规则数组,默认为 UTC_MODIFIED_DESC,即 根据修改时间降序排序
    @NameInMap("orders")
    public java.util.List orders;

    // 当前页码,从1开始,默认为1
    @NameInMap("page_num")
    public Long pageNum;

    // 分页大小,默认为10
    @NameInMap("page_size")
    public Long pageSize;

    // 根据参数类型进行查询
    @NameInMap("param_type")
    public String paramType;

    // 查询类型,支持精准查询、模糊查询、前缀模糊查询,这里默认为模糊查询;查询类型针对字段 key
    @NameInMap("query_type")
    public String queryType;

    // 该参数属于哪个 scope,可以在多个 scope 中查询
    @NameInMap("scopes")
    public java.util.List scopes;

    // 该参数在该 scope 中的 id
    @NameInMap("scope_id")
    public String scopeId;

    public static QueryConfigGlobalRequest build(java.util.Map map) throws Exception {
        QueryConfigGlobalRequest self = new QueryConfigGlobalRequest();
        return TeaModel.build(map, self);
    }

    public QueryConfigGlobalRequest setAuthToken(String authToken) {
        this.authToken = authToken;
        return this;
    }
    public String getAuthToken() {
        return this.authToken;
    }

    public QueryConfigGlobalRequest setTenant(String tenant) {
        this.tenant = tenant;
        return this;
    }
    public String getTenant() {
        return this.tenant;
    }

    public QueryConfigGlobalRequest setDataLevel(String dataLevel) {
        this.dataLevel = dataLevel;
        return this;
    }
    public String getDataLevel() {
        return this.dataLevel;
    }

    public QueryConfigGlobalRequest setKey(String key) {
        this.key = key;
        return this;
    }
    public String getKey() {
        return this.key;
    }

    public QueryConfigGlobalRequest setOrders(java.util.List orders) {
        this.orders = orders;
        return this;
    }
    public java.util.List getOrders() {
        return this.orders;
    }

    public QueryConfigGlobalRequest setPageNum(Long pageNum) {
        this.pageNum = pageNum;
        return this;
    }
    public Long getPageNum() {
        return this.pageNum;
    }

    public QueryConfigGlobalRequest setPageSize(Long pageSize) {
        this.pageSize = pageSize;
        return this;
    }
    public Long getPageSize() {
        return this.pageSize;
    }

    public QueryConfigGlobalRequest setParamType(String paramType) {
        this.paramType = paramType;
        return this;
    }
    public String getParamType() {
        return this.paramType;
    }

    public QueryConfigGlobalRequest setQueryType(String queryType) {
        this.queryType = queryType;
        return this;
    }
    public String getQueryType() {
        return this.queryType;
    }

    public QueryConfigGlobalRequest setScopes(java.util.List scopes) {
        this.scopes = scopes;
        return this;
    }
    public java.util.List getScopes() {
        return this.scopes;
    }

    public QueryConfigGlobalRequest setScopeId(String scopeId) {
        this.scopeId = scopeId;
        return this;
    }
    public String getScopeId() {
        return this.scopeId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy