
com.aliyun.dingtalkdatacenter_1_0.models.GetIntellectualPropertyResponseBody 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 GetIntellectualPropertyResponseBody extends TeaModel {
/**
* example:
* [ { "Status": "有效", "Type": "专利", "Pledgor": "齐风莲", "Number": "91611024MA70X17M7E", "Period": "2015年06月11日至2015年06月11日", "PublicDate": "2015-06-18 00:00:00", "Pawnee": "齐风莲", "entName": "东兰县鸿发摩托车安全技术检验有限公司" } ]
*/
@NameInMap("data")
public String data;
@NameInMap("total")
public Long total;
public static GetIntellectualPropertyResponseBody build(java.util.Map map) throws Exception {
GetIntellectualPropertyResponseBody self = new GetIntellectualPropertyResponseBody();
return TeaModel.build(map, self);
}
public GetIntellectualPropertyResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public GetIntellectualPropertyResponseBody setTotal(Long total) {
this.total = total;
return this;
}
public Long getTotal() {
return this.total;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy