com.aliyun.dingtalkpedia_1_0.models.PediaWordsQueryResponseBody 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.dingtalkpedia_1_0.models;
import com.aliyun.tea.*;
public class PediaWordsQueryResponseBody extends TeaModel {
@NameInMap("data")
public PediaWordsQueryResponseBodyData data;
@NameInMap("success")
public Boolean success;
public static PediaWordsQueryResponseBody build(java.util.Map map) throws Exception {
PediaWordsQueryResponseBody self = new PediaWordsQueryResponseBody();
return TeaModel.build(map, self);
}
public PediaWordsQueryResponseBody setData(PediaWordsQueryResponseBodyData data) {
this.data = data;
return this;
}
public PediaWordsQueryResponseBodyData getData() {
return this.data;
}
public PediaWordsQueryResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class PediaWordsQueryResponseBodyDataAppLink extends TeaModel {
/**
* example:
* 相关应用
*/
@NameInMap("appName")
public String appName;
/**
* example:
* htttps://1234567
*/
@NameInMap("iconLink")
public String iconLink;
/**
* example:
*
*/
@NameInMap("pcLink")
public String pcLink;
/**
* example:
*
*/
@NameInMap("phoneLink")
public String phoneLink;
public static PediaWordsQueryResponseBodyDataAppLink build(java.util.Map map) throws Exception {
PediaWordsQueryResponseBodyDataAppLink self = new PediaWordsQueryResponseBodyDataAppLink();
return TeaModel.build(map, self);
}
public PediaWordsQueryResponseBodyDataAppLink setAppName(String appName) {
this.appName = appName;
return this;
}
public String getAppName() {
return this.appName;
}
public PediaWordsQueryResponseBodyDataAppLink setIconLink(String iconLink) {
this.iconLink = iconLink;
return this;
}
public String getIconLink() {
return this.iconLink;
}
public PediaWordsQueryResponseBodyDataAppLink setPcLink(String pcLink) {
this.pcLink = pcLink;
return this;
}
public String getPcLink() {
return this.pcLink;
}
public PediaWordsQueryResponseBodyDataAppLink setPhoneLink(String phoneLink) {
this.phoneLink = phoneLink;
return this;
}
public String getPhoneLink() {
return this.phoneLink;
}
}
public static class PediaWordsQueryResponseBodyDataContactList extends TeaModel {
/**
* example:
* @dasdasd
*/
@NameInMap("avatarMediaId")
public String avatarMediaId;
/**
* example:
* 相关联系人
*/
@NameInMap("nickName")
public String nickName;
/**
* example:
* 12321231
*/
@NameInMap("userId")
public String userId;
public static PediaWordsQueryResponseBodyDataContactList build(java.util.Map map) throws Exception {
PediaWordsQueryResponseBodyDataContactList self = new PediaWordsQueryResponseBodyDataContactList();
return TeaModel.build(map, self);
}
public PediaWordsQueryResponseBodyDataContactList setAvatarMediaId(String avatarMediaId) {
this.avatarMediaId = avatarMediaId;
return this;
}
public String getAvatarMediaId() {
return this.avatarMediaId;
}
public PediaWordsQueryResponseBodyDataContactList setNickName(String nickName) {
this.nickName = nickName;
return this;
}
public String getNickName() {
return this.nickName;
}
public PediaWordsQueryResponseBodyDataContactList setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
public static class PediaWordsQueryResponseBodyDataPicList extends TeaModel {
/**
* example:
*
*/
@NameInMap("mediaIdUrl")
public String mediaIdUrl;
public static PediaWordsQueryResponseBodyDataPicList build(java.util.Map map) throws Exception {
PediaWordsQueryResponseBodyDataPicList self = new PediaWordsQueryResponseBodyDataPicList();
return TeaModel.build(map, self);
}
public PediaWordsQueryResponseBodyDataPicList setMediaIdUrl(String mediaIdUrl) {
this.mediaIdUrl = mediaIdUrl;
return this;
}
public String getMediaIdUrl() {
return this.mediaIdUrl;
}
}
public static class PediaWordsQueryResponseBodyDataRelatedDoc extends TeaModel {
/**
* example:
*
*/
@NameInMap("link")
public String link;
/**
* example:
* 相关文档
*/
@NameInMap("name")
public String name;
/**
* example:
* adoc
*/
@NameInMap("type")
public String type;
public static PediaWordsQueryResponseBodyDataRelatedDoc build(java.util.Map map) throws Exception {
PediaWordsQueryResponseBodyDataRelatedDoc self = new PediaWordsQueryResponseBodyDataRelatedDoc();
return TeaModel.build(map, self);
}
public PediaWordsQueryResponseBodyDataRelatedDoc setLink(String link) {
this.link = link;
return this;
}
public String getLink() {
return this.link;
}
public PediaWordsQueryResponseBodyDataRelatedDoc setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public PediaWordsQueryResponseBodyDataRelatedDoc setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class PediaWordsQueryResponseBodyDataRelatedLink extends TeaModel {
/**
* example:
*
*/
@NameInMap("link")
public String link;
/**
* example:
* 相关链接
*/
@NameInMap("name")
public String name;
public static PediaWordsQueryResponseBodyDataRelatedLink build(java.util.Map map) throws Exception {
PediaWordsQueryResponseBodyDataRelatedLink self = new PediaWordsQueryResponseBodyDataRelatedLink();
return TeaModel.build(map, self);
}
public PediaWordsQueryResponseBodyDataRelatedLink setLink(String link) {
this.link = link;
return this;
}
public String getLink() {
return this.link;
}
public PediaWordsQueryResponseBodyDataRelatedLink setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}
public static class PediaWordsQueryResponseBodyData extends TeaModel {
@NameInMap("appLink")
public java.util.List appLink;
/**
* example:
* 审核者
*/
@NameInMap("approveName")
public String approveName;
@NameInMap("contactList")
public java.util.List contactList;
@NameInMap("contacts")
public java.util.List contacts;
/**
* example:
* 创建者
*/
@NameInMap("creatorName")
public String creatorName;
/**
* example:
* 31312312
*/
@NameInMap("gmtCreate")
public Long gmtCreate;
/**
* example:
* 321312312
*/
@NameInMap("gmtModify")
public Long gmtModify;
@NameInMap("highLightWordAlias")
public java.util.List highLightWordAlias;
@NameInMap("imHighLight")
public Boolean imHighLight;
/**
* example:
* 12345678
*/
@NameInMap("parentUuid")
public Long parentUuid;
@NameInMap("picList")
public java.util.List picList;
@NameInMap("relatedDoc")
public java.util.List relatedDoc;
@NameInMap("relatedLink")
public java.util.List relatedLink;
@NameInMap("simHighLight")
public Boolean simHighLight;
/**
* example:
* 剔除富文本释义
*/
@NameInMap("simpleWordParaphrase")
public String simpleWordParaphrase;
@NameInMap("tagsList")
public java.util.List tagsList;
/**
* example:
* 更新者
*/
@NameInMap("updaterName")
public String updaterName;
/**
* example:
* 213123123
*/
@NameInMap("userId")
public String userId;
/**
* example:
* 123123121
*/
@NameInMap("uuid")
public Long uuid;
@NameInMap("wordAlias")
public java.util.List wordAlias;
/**
* example:
* 词条名称
*/
@NameInMap("wordName")
public String wordName;
/**
* example:
* 释义
*/
@NameInMap("wordParaphrase")
public String wordParaphrase;
public static PediaWordsQueryResponseBodyData build(java.util.Map map) throws Exception {
PediaWordsQueryResponseBodyData self = new PediaWordsQueryResponseBodyData();
return TeaModel.build(map, self);
}
public PediaWordsQueryResponseBodyData setAppLink(java.util.List appLink) {
this.appLink = appLink;
return this;
}
public java.util.List getAppLink() {
return this.appLink;
}
public PediaWordsQueryResponseBodyData setApproveName(String approveName) {
this.approveName = approveName;
return this;
}
public String getApproveName() {
return this.approveName;
}
public PediaWordsQueryResponseBodyData setContactList(java.util.List contactList) {
this.contactList = contactList;
return this;
}
public java.util.List getContactList() {
return this.contactList;
}
public PediaWordsQueryResponseBodyData setContacts(java.util.List contacts) {
this.contacts = contacts;
return this;
}
public java.util.List getContacts() {
return this.contacts;
}
public PediaWordsQueryResponseBodyData setCreatorName(String creatorName) {
this.creatorName = creatorName;
return this;
}
public String getCreatorName() {
return this.creatorName;
}
public PediaWordsQueryResponseBodyData setGmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
public Long getGmtCreate() {
return this.gmtCreate;
}
public PediaWordsQueryResponseBodyData setGmtModify(Long gmtModify) {
this.gmtModify = gmtModify;
return this;
}
public Long getGmtModify() {
return this.gmtModify;
}
public PediaWordsQueryResponseBodyData setHighLightWordAlias(java.util.List highLightWordAlias) {
this.highLightWordAlias = highLightWordAlias;
return this;
}
public java.util.List getHighLightWordAlias() {
return this.highLightWordAlias;
}
public PediaWordsQueryResponseBodyData setImHighLight(Boolean imHighLight) {
this.imHighLight = imHighLight;
return this;
}
public Boolean getImHighLight() {
return this.imHighLight;
}
public PediaWordsQueryResponseBodyData setParentUuid(Long parentUuid) {
this.parentUuid = parentUuid;
return this;
}
public Long getParentUuid() {
return this.parentUuid;
}
public PediaWordsQueryResponseBodyData setPicList(java.util.List picList) {
this.picList = picList;
return this;
}
public java.util.List getPicList() {
return this.picList;
}
public PediaWordsQueryResponseBodyData setRelatedDoc(java.util.List relatedDoc) {
this.relatedDoc = relatedDoc;
return this;
}
public java.util.List getRelatedDoc() {
return this.relatedDoc;
}
public PediaWordsQueryResponseBodyData setRelatedLink(java.util.List relatedLink) {
this.relatedLink = relatedLink;
return this;
}
public java.util.List getRelatedLink() {
return this.relatedLink;
}
public PediaWordsQueryResponseBodyData setSimHighLight(Boolean simHighLight) {
this.simHighLight = simHighLight;
return this;
}
public Boolean getSimHighLight() {
return this.simHighLight;
}
public PediaWordsQueryResponseBodyData setSimpleWordParaphrase(String simpleWordParaphrase) {
this.simpleWordParaphrase = simpleWordParaphrase;
return this;
}
public String getSimpleWordParaphrase() {
return this.simpleWordParaphrase;
}
public PediaWordsQueryResponseBodyData setTagsList(java.util.List tagsList) {
this.tagsList = tagsList;
return this;
}
public java.util.List getTagsList() {
return this.tagsList;
}
public PediaWordsQueryResponseBodyData setUpdaterName(String updaterName) {
this.updaterName = updaterName;
return this;
}
public String getUpdaterName() {
return this.updaterName;
}
public PediaWordsQueryResponseBodyData setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public PediaWordsQueryResponseBodyData setUuid(Long uuid) {
this.uuid = uuid;
return this;
}
public Long getUuid() {
return this.uuid;
}
public PediaWordsQueryResponseBodyData setWordAlias(java.util.List wordAlias) {
this.wordAlias = wordAlias;
return this;
}
public java.util.List getWordAlias() {
return this.wordAlias;
}
public PediaWordsQueryResponseBodyData setWordName(String wordName) {
this.wordName = wordName;
return this;
}
public String getWordName() {
return this.wordName;
}
public PediaWordsQueryResponseBodyData setWordParaphrase(String wordParaphrase) {
this.wordParaphrase = wordParaphrase;
return this;
}
public String getWordParaphrase() {
return this.wordParaphrase;
}
}
}