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

com.antgroup.antchain.openapi.riskplus.models.BatchQueryResult 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 BatchQueryResult extends TeaModel {
    // 查询主体
    @NameInMap("query_key")
    @Validation(required = true)
    public String queryKey;

    // 单用户决策结果
    @NameInMap("decision")
    @Validation(required = true)
    public String decision;

    // 输出变量信息
    @NameInMap("output_info")
    @Validation(required = true)
    public BatchQueryOutputModelInfo outputInfo;

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

    public BatchQueryResult setQueryKey(String queryKey) {
        this.queryKey = queryKey;
        return this;
    }
    public String getQueryKey() {
        return this.queryKey;
    }

    public BatchQueryResult setDecision(String decision) {
        this.decision = decision;
        return this;
    }
    public String getDecision() {
        return this.decision;
    }

    public BatchQueryResult setOutputInfo(BatchQueryOutputModelInfo outputInfo) {
        this.outputInfo = outputInfo;
        return this;
    }
    public BatchQueryOutputModelInfo getOutputInfo() {
        return this.outputInfo;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy