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

com.aliyun.dingtalkindustry_1_0.models.IndustryManufactureMesTeamMgmtResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class IndustryManufactureMesTeamMgmtResponseBody extends TeaModel {
    @NameInMap("dingOpenErrcode")
    public Integer dingOpenErrcode;

    @NameInMap("errorMsg")
    public String errorMsg;

    @NameInMap("result")
    public IndustryManufactureMesTeamMgmtResponseBodyResult result;

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

    public IndustryManufactureMesTeamMgmtResponseBody setDingOpenErrcode(Integer dingOpenErrcode) {
        this.dingOpenErrcode = dingOpenErrcode;
        return this;
    }
    public Integer getDingOpenErrcode() {
        return this.dingOpenErrcode;
    }

    public IndustryManufactureMesTeamMgmtResponseBody setErrorMsg(String errorMsg) {
        this.errorMsg = errorMsg;
        return this;
    }
    public String getErrorMsg() {
        return this.errorMsg;
    }

    public IndustryManufactureMesTeamMgmtResponseBody setResult(IndustryManufactureMesTeamMgmtResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public IndustryManufactureMesTeamMgmtResponseBodyResult getResult() {
        return this.result;
    }

    public static class IndustryManufactureMesTeamMgmtResponseBodyResult extends TeaModel {
        @NameInMap("content")
        public String content;

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

        public IndustryManufactureMesTeamMgmtResponseBodyResult setContent(String content) {
            this.content = content;
            return this;
        }
        public String getContent() {
            return this.content;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy