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

com.aliyun.dingtalkmicro_app_1_0.models.ListInnerAppResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkmicro_app_1_0.models;

import com.aliyun.tea.*;

public class ListInnerAppResponseBody extends TeaModel {
    // 应用列表
    @NameInMap("appList")
    public java.util.List appList;

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

    public ListInnerAppResponseBody setAppList(java.util.List appList) {
        this.appList = appList;
        return this;
    }
    public java.util.List getAppList() {
        return this.appList;
    }

    public static class ListInnerAppResponseBodyAppList extends TeaModel {
        // 应用id
        @NameInMap("agentId")
        public Long agentId;

        // 应用描述
        @NameInMap("desc")
        public String desc;

        // 应用移动端首页地址
        @NameInMap("homepageLink")
        public String homepageLink;

        // 应用图标
        @NameInMap("icon")
        public String icon;

        // 应用名称
        @NameInMap("name")
        public String name;

        // 应用管理后台地址
        @NameInMap("ompLink")
        public String ompLink;

        // 应用PC端首页地址
        @NameInMap("pcHomepageLink")
        public String pcHomepageLink;

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

        public ListInnerAppResponseBodyAppList setAgentId(Long agentId) {
            this.agentId = agentId;
            return this;
        }
        public Long getAgentId() {
            return this.agentId;
        }

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

        public ListInnerAppResponseBodyAppList setHomepageLink(String homepageLink) {
            this.homepageLink = homepageLink;
            return this;
        }
        public String getHomepageLink() {
            return this.homepageLink;
        }

        public ListInnerAppResponseBodyAppList setIcon(String icon) {
            this.icon = icon;
            return this;
        }
        public String getIcon() {
            return this.icon;
        }

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

        public ListInnerAppResponseBodyAppList setOmpLink(String ompLink) {
            this.ompLink = ompLink;
            return this;
        }
        public String getOmpLink() {
            return this.ompLink;
        }

        public ListInnerAppResponseBodyAppList setPcHomepageLink(String pcHomepageLink) {
            this.pcHomepageLink = pcHomepageLink;
            return this;
        }
        public String getPcHomepageLink() {
            return this.pcHomepageLink;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy