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

com.antgroup.antchain.openapi.das.models.InterfaceOutput Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.das.models;

import com.aliyun.tea.*;

public class InterfaceOutput extends TeaModel {
    // 接口出参名称
    @NameInMap("name")
    @Validation(maxLength = 50)
    public String name;

    // 接口出参类型
    @NameInMap("type")
    @Validation(maxLength = 50)
    public String type;

    // 接口出参描述
    @NameInMap("description")
    @Validation(maxLength = 100)
    public String description;

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

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

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

    public InterfaceOutput setDescription(String description) {
        this.description = description;
        return this;
    }
    public String getDescription() {
        return this.description;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy