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

com.aliyun.dingtalkindustry_1_0.models.IndustryManufactureCommonEventResponseBody 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 IndustryManufactureCommonEventResponseBody extends TeaModel {
    @NameInMap("errorMsg")
    public String errorMsg;

    // Id of the request
    @NameInMap("requestId")
    public String requestId;

    @NameInMap("result")
    public IndustryManufactureCommonEventResponseBodyResult result;

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

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

    public IndustryManufactureCommonEventResponseBody setRequestId(String requestId) {
        this.requestId = requestId;
        return this;
    }
    public String getRequestId() {
        return this.requestId;
    }

    public IndustryManufactureCommonEventResponseBody setResult(IndustryManufactureCommonEventResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public IndustryManufactureCommonEventResponseBodyResult getResult() {
        return this.result;
    }

    public static class IndustryManufactureCommonEventResponseBodyResult extends TeaModel {
        // 返回内容
        @NameInMap("content")
        public String content;

        // 状态码
        @NameInMap("httpCode")
        public String httpCode;

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

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

        public IndustryManufactureCommonEventResponseBodyResult setHttpCode(String httpCode) {
            this.httpCode = httpCode;
            return this;
        }
        public String getHttpCode() {
            return this.httpCode;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy