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

com.aliyun.dingtalkjzcrm_1_0.models.GetDataViewResponseBody 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.dingtalkjzcrm_1_0.models;

import com.aliyun.tea.*;

public class GetDataViewResponseBody extends TeaModel {
    @NameInMap("data")
    public GetDataViewResponseBodyData data;

    // 字段明细
    @NameInMap("dataname")
    public java.util.Map> dataname;

    // 响应时间
    @NameInMap("time")
    public String time;

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

    public GetDataViewResponseBody setData(GetDataViewResponseBodyData data) {
        this.data = data;
        return this;
    }
    public GetDataViewResponseBodyData getData() {
        return this.data;
    }

    public GetDataViewResponseBody setDataname(java.util.Map> dataname) {
        this.dataname = dataname;
        return this;
    }
    public java.util.Map> getDataname() {
        return this.dataname;
    }

    public GetDataViewResponseBody setTime(String time) {
        this.time = time;
        return this;
    }
    public String getTime() {
        return this.time;
    }

    public static class GetDataViewResponseBodyData extends TeaModel {
        // 数据详情
        @NameInMap("detail")
        public java.util.Map detail;

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

        public GetDataViewResponseBodyData setDetail(java.util.Map detail) {
            this.detail = detail;
            return this;
        }
        public java.util.Map getDetail() {
            return this.detail;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy