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

com.aliyun.dingtalkminiapp_1_0.models.GetMiniAppMetaDataResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetMiniAppMetaDataResponseBody extends TeaModel {
    // receiveTime
    @NameInMap("dingOpenErrcode")
    public Long dingOpenErrcode;

    // errorMsg
    @NameInMap("errorMsg")
    public String errorMsg;

    // result
    @NameInMap("result")
    public GetMiniAppMetaDataResponseBodyResult result;

    // requestId
    @NameInMap("success")
    public Boolean success;

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

    public GetMiniAppMetaDataResponseBody setDingOpenErrcode(Long dingOpenErrcode) {
        this.dingOpenErrcode = dingOpenErrcode;
        return this;
    }
    public Long getDingOpenErrcode() {
        return this.dingOpenErrcode;
    }

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

    public GetMiniAppMetaDataResponseBody setResult(GetMiniAppMetaDataResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public GetMiniAppMetaDataResponseBodyResult getResult() {
        return this.result;
    }

    public GetMiniAppMetaDataResponseBody setSuccess(Boolean success) {
        this.success = success;
        return this;
    }
    public Boolean getSuccess() {
        return this.success;
    }

    public static class GetMiniAppMetaDataResponseBodyResult extends TeaModel {
        // data
        @NameInMap("data")
        public java.util.Map data;

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

        public GetMiniAppMetaDataResponseBodyResult setData(java.util.Map data) {
            this.data = data;
            return this;
        }
        public java.util.Map getData() {
            return this.data;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy