com.aliyun.dingtalksearch_1_0.models.GetSearchItemResponseBody 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.dingtalksearch_1_0.models;
import com.aliyun.tea.*;
public class GetSearchItemResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* 四大名著
*/
@NameInMap("footer")
public String footer;
/**
* This parameter is required.
*
* example:
* 2021-09-17T19:43Z
*/
@NameInMap("gmtCreate")
public String gmtCreate;
/**
* This parameter is required.
*
* example:
* 2021-09-17T19:43Z
*/
@NameInMap("gmtModified")
public String gmtModified;
/**
* This parameter is required.
*/
@NameInMap("icon")
public String icon;
/**
* This parameter is required.
*
* example:
* 1111
*/
@NameInMap("itemId")
public String itemId;
/**
* This parameter is required.
*
* example:
*
*/
@NameInMap("mobileUrl")
public String mobileUrl;
/**
* This parameter is required.
*
* example:
*
*/
@NameInMap("pcUrl")
public String pcUrl;
/**
* This parameter is required.
*
* example:
* 中国古代章回体长篇小说
*/
@NameInMap("summary")
public String summary;
/**
* This parameter is required.
*
* example:
* 3333
*/
@NameInMap("tabId")
public Integer tabId;
/**
* This parameter is required.
*
* example:
* 红楼梦
*/
@NameInMap("title")
public String title;
/**
* This parameter is required.
*
* example:
*
*/
@NameInMap("url")
public String url;
public static GetSearchItemResponseBody build(java.util.Map map) throws Exception {
GetSearchItemResponseBody self = new GetSearchItemResponseBody();
return TeaModel.build(map, self);
}
public GetSearchItemResponseBody setFooter(String footer) {
this.footer = footer;
return this;
}
public String getFooter() {
return this.footer;
}
public GetSearchItemResponseBody setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public GetSearchItemResponseBody setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
return this;
}
public String getGmtModified() {
return this.gmtModified;
}
public GetSearchItemResponseBody setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public GetSearchItemResponseBody setItemId(String itemId) {
this.itemId = itemId;
return this;
}
public String getItemId() {
return this.itemId;
}
public GetSearchItemResponseBody setMobileUrl(String mobileUrl) {
this.mobileUrl = mobileUrl;
return this;
}
public String getMobileUrl() {
return this.mobileUrl;
}
public GetSearchItemResponseBody setPcUrl(String pcUrl) {
this.pcUrl = pcUrl;
return this;
}
public String getPcUrl() {
return this.pcUrl;
}
public GetSearchItemResponseBody setSummary(String summary) {
this.summary = summary;
return this;
}
public String getSummary() {
return this.summary;
}
public GetSearchItemResponseBody setTabId(Integer tabId) {
this.tabId = tabId;
return this;
}
public Integer getTabId() {
return this.tabId;
}
public GetSearchItemResponseBody setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public GetSearchItemResponseBody setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}