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

com.aliyun.dingtalkedu_1_0.models.BatchOrgCreateHWResponseBody 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.dingtalkedu_1_0.models;

import com.aliyun.tea.*;

public class BatchOrgCreateHWResponseBody extends TeaModel {
    @NameInMap("result")
    public BatchOrgCreateHWResponseBodyResult result;

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

    public BatchOrgCreateHWResponseBody setResult(BatchOrgCreateHWResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public BatchOrgCreateHWResponseBodyResult getResult() {
        return this.result;
    }

    public static class BatchOrgCreateHWResponseBodyResultPublishList extends TeaModel {
        @NameInMap("corpid")
        public String corpid;

        @NameInMap("hwid")
        public Long hwid;

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

        public BatchOrgCreateHWResponseBodyResultPublishList setCorpid(String corpid) {
            this.corpid = corpid;
            return this;
        }
        public String getCorpid() {
            return this.corpid;
        }

        public BatchOrgCreateHWResponseBodyResultPublishList setHwid(Long hwid) {
            this.hwid = hwid;
            return this;
        }
        public Long getHwid() {
            return this.hwid;
        }

    }

    public static class BatchOrgCreateHWResponseBodyResult extends TeaModel {
        @NameInMap("publishList")
        public java.util.List publishList;

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

        public BatchOrgCreateHWResponseBodyResult setPublishList(java.util.List publishList) {
            this.publishList = publishList;
            return this;
        }
        public java.util.List getPublishList() {
            return this.publishList;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy