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

com.antgroup.antchain.openapi.riskplus.models.SecurityDataQueryStruct Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class SecurityDataQueryStruct extends TeaModel {
    // 请求数据参数
    @NameInMap("params")
    @Validation(required = true)
    public String params;

    // 请求数据类型
    @NameInMap("type")
    @Validation(required = true)
    public String type;

    // 请求数据版本
    @NameInMap("version")
    @Validation(required = true)
    public String version;

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

    public SecurityDataQueryStruct setParams(String params) {
        this.params = params;
        return this;
    }
    public String getParams() {
        return this.params;
    }

    public SecurityDataQueryStruct setType(String type) {
        this.type = type;
        return this;
    }
    public String getType() {
        return this.type;
    }

    public SecurityDataQueryStruct setVersion(String version) {
        this.version = version;
        return this;
    }
    public String getVersion() {
        return this.version;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy