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

com.aliyun.dingtalkservice_group_1_0.models.QueryGroupSetResponseBody 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.dingtalkservice_group_1_0.models;

import com.aliyun.tea.*;

public class QueryGroupSetResponseBody extends TeaModel {
    // records
    @NameInMap("records")
    public java.util.List records;

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

    public QueryGroupSetResponseBody setRecords(java.util.List records) {
        this.records = records;
        return this;
    }
    public java.util.List getRecords() {
        return this.records;
    }

    public static class QueryGroupSetResponseBodyRecords extends TeaModel {
        @NameInMap("gmtCreate")
        public String gmtCreate;

        @NameInMap("gmtModified")
        public String gmtModified;

        @NameInMap("groupSetName")
        public String groupSetName;

        @NameInMap("openGroupSetId")
        public String openGroupSetId;

        @NameInMap("templateId")
        public String templateId;

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

        public QueryGroupSetResponseBodyRecords setGmtCreate(String gmtCreate) {
            this.gmtCreate = gmtCreate;
            return this;
        }
        public String getGmtCreate() {
            return this.gmtCreate;
        }

        public QueryGroupSetResponseBodyRecords setGmtModified(String gmtModified) {
            this.gmtModified = gmtModified;
            return this;
        }
        public String getGmtModified() {
            return this.gmtModified;
        }

        public QueryGroupSetResponseBodyRecords setGroupSetName(String groupSetName) {
            this.groupSetName = groupSetName;
            return this;
        }
        public String getGroupSetName() {
            return this.groupSetName;
        }

        public QueryGroupSetResponseBodyRecords setOpenGroupSetId(String openGroupSetId) {
            this.openGroupSetId = openGroupSetId;
            return this;
        }
        public String getOpenGroupSetId() {
            return this.openGroupSetId;
        }

        public QueryGroupSetResponseBodyRecords setTemplateId(String templateId) {
            this.templateId = templateId;
            return this;
        }
        public String getTemplateId() {
            return this.templateId;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy