![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkdatacenter_1_0.models.GetWorkCopyrightResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdatacenter_1_0.models;
import com.aliyun.tea.*;
public class GetWorkCopyrightResponseBody extends TeaModel {
/**
* example:
* [{ "EntName":"企业名称", "CopyName":"作品全称", "TypeName":"作品类别", "CopyNum":"登记号", "SuccessDate":"创作完成日期", "FirstDate":"首次发表日期", "ApprovalDate":"登记批准日期" }]
*/
@NameInMap("data")
public String data;
@NameInMap("total")
public Long total;
public static GetWorkCopyrightResponseBody build(java.util.Map map) throws Exception {
GetWorkCopyrightResponseBody self = new GetWorkCopyrightResponseBody();
return TeaModel.build(map, self);
}
public GetWorkCopyrightResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public GetWorkCopyrightResponseBody setTotal(Long total) {
this.total = total;
return this;
}
public Long getTotal() {
return this.total;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy