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

com.aliyun.dingtalkindustry_1_0.models.DigitalStoreGroupsResponseBody 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.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class DigitalStoreGroupsResponseBody extends TeaModel {
    @NameInMap("content")
    public java.util.List content;

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

    public DigitalStoreGroupsResponseBody setContent(java.util.List content) {
        this.content = content;
        return this;
    }
    public java.util.List getContent() {
        return this.content;
    }

    public static class DigitalStoreGroupsResponseBodyContent extends TeaModel {
        // 分组Id
        @NameInMap("groupId")
        public Long groupId;

        // 分组名称
        @NameInMap("groupName")
        public String groupName;

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

        public DigitalStoreGroupsResponseBodyContent setGroupId(Long groupId) {
            this.groupId = groupId;
            return this;
        }
        public Long getGroupId() {
            return this.groupId;
        }

        public DigitalStoreGroupsResponseBodyContent setGroupName(String groupName) {
            this.groupName = groupName;
            return this;
        }
        public String getGroupName() {
            return this.groupName;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy