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

com.aliyun.dingtalkdatacenter_1_0.models.QueryYydAppWeekStatisticalDataResponse Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class QueryYydAppWeekStatisticalDataResponse extends TeaModel {
    @NameInMap("headers")
    @Validation(required = true)
    public java.util.Map headers;

    @NameInMap("body")
    @Validation(required = true)
    public QueryYydAppWeekStatisticalDataResponseBody body;

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

    public QueryYydAppWeekStatisticalDataResponse setHeaders(java.util.Map headers) {
        this.headers = headers;
        return this;
    }
    public java.util.Map getHeaders() {
        return this.headers;
    }

    public QueryYydAppWeekStatisticalDataResponse setBody(QueryYydAppWeekStatisticalDataResponseBody body) {
        this.body = body;
        return this;
    }
    public QueryYydAppWeekStatisticalDataResponseBody getBody() {
        return this.body;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy