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

com.aliyun.dingtalkreport_1_0.models.QueryReportDetailResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkreport_1_0.models;

import com.aliyun.tea.*;

public class QueryReportDetailResponseBody extends TeaModel {
    @NameInMap("content")
    public java.util.List content;

    /**
     * example:
     * 

1507564800000

*/ @NameInMap("createTime") public Long createTime; /** * example: *

user123

*/ @NameInMap("creatorId") public String creatorId; /** * example: *

张三

*/ @NameInMap("creatorName") public String creatorName; /** * example: *

部门1

*/ @NameInMap("deptName") public String deptName; /** * example: *

1507564800000

*/ @NameInMap("modifiedTime") public Long modifiedTime; /** * example: *

这是备注

*/ @NameInMap("remark") public String remark; /** * example: *

18XXXX

*/ @NameInMap("reportId") public String reportId; /** * example: *

日报

*/ @NameInMap("templateName") public String templateName; public static QueryReportDetailResponseBody build(java.util.Map map) throws Exception { QueryReportDetailResponseBody self = new QueryReportDetailResponseBody(); return TeaModel.build(map, self); } public QueryReportDetailResponseBody setContent(java.util.List content) { this.content = content; return this; } public java.util.List getContent() { return this.content; } public QueryReportDetailResponseBody setCreateTime(Long createTime) { this.createTime = createTime; return this; } public Long getCreateTime() { return this.createTime; } public QueryReportDetailResponseBody setCreatorId(String creatorId) { this.creatorId = creatorId; return this; } public String getCreatorId() { return this.creatorId; } public QueryReportDetailResponseBody setCreatorName(String creatorName) { this.creatorName = creatorName; return this; } public String getCreatorName() { return this.creatorName; } public QueryReportDetailResponseBody setDeptName(String deptName) { this.deptName = deptName; return this; } public String getDeptName() { return this.deptName; } public QueryReportDetailResponseBody setModifiedTime(Long modifiedTime) { this.modifiedTime = modifiedTime; return this; } public Long getModifiedTime() { return this.modifiedTime; } public QueryReportDetailResponseBody setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public QueryReportDetailResponseBody setReportId(String reportId) { this.reportId = reportId; return this; } public String getReportId() { return this.reportId; } public QueryReportDetailResponseBody setTemplateName(String templateName) { this.templateName = templateName; return this; } public String getTemplateName() { return this.templateName; } public static class QueryReportDetailResponseBodyContent extends TeaModel { @NameInMap("images") public java.util.List images; /** * example: *

今日工作

*/ @NameInMap("key") public String key; /** * example: *

0

*/ @NameInMap("sort") public String sort; /** * example: *

1

*/ @NameInMap("type") public String type; /** * example: *

开发工作

*/ @NameInMap("value") public String value; public static QueryReportDetailResponseBodyContent build(java.util.Map map) throws Exception { QueryReportDetailResponseBodyContent self = new QueryReportDetailResponseBodyContent(); return TeaModel.build(map, self); } public QueryReportDetailResponseBodyContent setImages(java.util.List images) { this.images = images; return this; } public java.util.List getImages() { return this.images; } public QueryReportDetailResponseBodyContent setKey(String key) { this.key = key; return this; } public String getKey() { return this.key; } public QueryReportDetailResponseBodyContent setSort(String sort) { this.sort = sort; return this; } public String getSort() { return this.sort; } public QueryReportDetailResponseBodyContent setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public QueryReportDetailResponseBodyContent setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy