![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkwiki_1_0.models.WikiWordsParseResponseBody 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.dingtalkwiki_1_0.models;
import com.aliyun.tea.*;
public class WikiWordsParseResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("data")
public java.util.List data;
/**
* This parameter is required.
*/
@NameInMap("errMsg")
public String errMsg;
@NameInMap("success")
public Boolean success;
public static WikiWordsParseResponseBody build(java.util.Map map) throws Exception {
WikiWordsParseResponseBody self = new WikiWordsParseResponseBody();
return TeaModel.build(map, self);
}
public WikiWordsParseResponseBody setData(java.util.List data) {
this.data = data;
return this;
}
public java.util.List getData() {
return this.data;
}
public WikiWordsParseResponseBody setErrMsg(String errMsg) {
this.errMsg = errMsg;
return this;
}
public String getErrMsg() {
return this.errMsg;
}
public WikiWordsParseResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class WikiWordsParseResponseBodyData extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("endIndex")
public Long endIndex;
/**
* This parameter is required.
*/
@NameInMap("startIndex")
public Long startIndex;
/**
* This parameter is required.
*/
@NameInMap("wordName")
public String wordName;
public static WikiWordsParseResponseBodyData build(java.util.Map map) throws Exception {
WikiWordsParseResponseBodyData self = new WikiWordsParseResponseBodyData();
return TeaModel.build(map, self);
}
public WikiWordsParseResponseBodyData setEndIndex(Long endIndex) {
this.endIndex = endIndex;
return this;
}
public Long getEndIndex() {
return this.endIndex;
}
public WikiWordsParseResponseBodyData setStartIndex(Long startIndex) {
this.startIndex = startIndex;
return this;
}
public Long getStartIndex() {
return this.startIndex;
}
public WikiWordsParseResponseBodyData setWordName(String wordName) {
this.wordName = wordName;
return this;
}
public String getWordName() {
return this.wordName;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy