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

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

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

import com.aliyun.tea.*;

public class GetTrademarkInfoResponseBody extends TeaModel {
    /**
     * example:
     * 

[{ "entName:企业名称", "trademarkName:商标名称", "regNum:商标注册号", "trademarkType:商标类型", "trademarkForm:商标形式", "trademarkStatus:商标状态", "applyDate:申请日期", "imageUrl:图片链接", "typeName:商标类型名", "period:专用权期限", "agent:代理人名称", "regPubNo:注册公告号", "regPubDate:注册公告日期", "firstPubNo:初审公告号", "firstPubDate:初审公告日期"}]

*/ @NameInMap("data") public String data; @NameInMap("total") public Long total; public static GetTrademarkInfoResponseBody build(java.util.Map map) throws Exception { GetTrademarkInfoResponseBody self = new GetTrademarkInfoResponseBody(); return TeaModel.build(map, self); } public GetTrademarkInfoResponseBody setData(String data) { this.data = data; return this; } public String getData() { return this.data; } public GetTrademarkInfoResponseBody setTotal(Long total) { this.total = total; return this; } public Long getTotal() { return this.total; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy