com.aliyun.dingtalkdatacenter_1_0.models.GetPatentInfoResponseBody 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 GetPatentInfoResponseBody extends TeaModel {
/**
* example:
* [{"EntName":"企业名称", "PatentType":"专利类型", "PatentName":"专利名", "PatentStatus":"专利状态", "RequestNum":"申请号", "RequestDate":"申请日", "PublicNum":"公开(公告)号", "PublicDate":"公开(公告)日", "InventorList":"发明人", "PatenteeList":"专利权人", "CateNum":"分类号", "PrioNum":"优先权号", "PrioDate":"优先权日", "Agency":"专利代理机构", "Agent":"代理人", "Brief":"简要说明", "MainClaim":"主权项"}]
*/
@NameInMap("data")
public String data;
@NameInMap("total")
public Long total;
public static GetPatentInfoResponseBody build(java.util.Map map) throws Exception {
GetPatentInfoResponseBody self = new GetPatentInfoResponseBody();
return TeaModel.build(map, self);
}
public GetPatentInfoResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public GetPatentInfoResponseBody setTotal(Long total) {
this.total = total;
return this;
}
public Long getTotal() {
return this.total;
}
}