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

com.antgroup.antchain.openapi.riskplus.models.OutParams 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 OutParams extends TeaModel {
    // 输出参数
    @NameInMap("name")
    @Validation(required = true)
    public String name;

    // 参数描述
    @NameInMap("desc")
    @Validation(required = true)
    public String desc;

    // 参数值
    @NameInMap("value")
    @Validation(required = true)
    public String value;

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

    public OutParams setName(String name) {
        this.name = name;
        return this;
    }
    public String getName() {
        return this.name;
    }

    public OutParams setDesc(String desc) {
        this.desc = desc;
        return this;
    }
    public String getDesc() {
        return this.desc;
    }

    public OutParams setValue(String value) {
        this.value = value;
        return this;
    }
    public String getValue() {
        return this.value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy