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

com.aliyun.dingtalkdingmi_1_0.models.GetDingMeBaseDataResponseBody 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.dingtalkdingmi_1_0.models;

import com.aliyun.tea.*;

public class GetDingMeBaseDataResponseBody extends TeaModel {
    // 是否缓存
    @NameInMap("fromCache")
    public Boolean fromCache;

    // 结果集
    @NameInMap("rawset")
    public java.util.List> rawset;

    // 运行时间
    @NameInMap("runtime")
    public Long runtime;

    // 字段解释
    @NameInMap("tips")
    public java.util.Map tips;

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

    public GetDingMeBaseDataResponseBody setFromCache(Boolean fromCache) {
        this.fromCache = fromCache;
        return this;
    }
    public Boolean getFromCache() {
        return this.fromCache;
    }

    public GetDingMeBaseDataResponseBody setRawset(java.util.List> rawset) {
        this.rawset = rawset;
        return this;
    }
    public java.util.List> getRawset() {
        return this.rawset;
    }

    public GetDingMeBaseDataResponseBody setRuntime(Long runtime) {
        this.runtime = runtime;
        return this;
    }
    public Long getRuntime() {
        return this.runtime;
    }

    public GetDingMeBaseDataResponseBody setTips(java.util.Map tips) {
        this.tips = tips;
        return this;
    }
    public java.util.Map getTips() {
        return this.tips;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy