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

com.antgroup.antchain.openapi.deps.models.AppDepend 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 AppDepend extends TeaModel {
    // 当前应用名称
    @NameInMap("app_name")
    @Validation(required = true)
    public String appName;

    // 该应用依赖的所有应用的 id 列表字符串
    @NameInMap("depend_app_names")
    @Validation(required = true)
    public String dependAppNames;

    // 应用显示名称
    @NameInMap("app_display_name")
    public String appDisplayName;

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

    public AppDepend setAppName(String appName) {
        this.appName = appName;
        return this;
    }
    public String getAppName() {
        return this.appName;
    }

    public AppDepend setDependAppNames(String dependAppNames) {
        this.dependAppNames = dependAppNames;
        return this;
    }
    public String getDependAppNames() {
        return this.dependAppNames;
    }

    public AppDepend setAppDisplayName(String appDisplayName) {
        this.appDisplayName = appDisplayName;
        return this;
    }
    public String getAppDisplayName() {
        return this.appDisplayName;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy