![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkconference_1_0.models.QueryMinutesTextResponseBody 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.dingtalkconference_1_0.models;
import com.aliyun.tea.*;
public class QueryMinutesTextResponseBody extends TeaModel {
/**
* example:
* true
*/
@NameInMap("hasMore")
public Boolean hasMore;
/**
* example:
* 1631172045153000_7940
*/
@NameInMap("nextToken")
public String nextToken;
@NameInMap("paragraphList")
public java.util.List paragraphList;
public static QueryMinutesTextResponseBody build(java.util.Map map) throws Exception {
QueryMinutesTextResponseBody self = new QueryMinutesTextResponseBody();
return TeaModel.build(map, self);
}
public QueryMinutesTextResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public QueryMinutesTextResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public QueryMinutesTextResponseBody setParagraphList(java.util.List paragraphList) {
this.paragraphList = paragraphList;
return this;
}
public java.util.List getParagraphList() {
return this.paragraphList;
}
public static class QueryMinutesTextResponseBodyParagraphListSentenceListWordList extends TeaModel {
/**
* example:
* 7940
*/
@NameInMap("endTime")
public Long endTime;
/**
* example:
* 7940
*/
@NameInMap("startTime")
public Long startTime;
/**
* example:
* 这里
*/
@NameInMap("word")
public String word;
/**
* example:
* 1631172050535000#0
*/
@NameInMap("wordId")
public String wordId;
public static QueryMinutesTextResponseBodyParagraphListSentenceListWordList build(java.util.Map map) throws Exception {
QueryMinutesTextResponseBodyParagraphListSentenceListWordList self = new QueryMinutesTextResponseBodyParagraphListSentenceListWordList();
return TeaModel.build(map, self);
}
public QueryMinutesTextResponseBodyParagraphListSentenceListWordList setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public QueryMinutesTextResponseBodyParagraphListSentenceListWordList setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public QueryMinutesTextResponseBodyParagraphListSentenceListWordList setWord(String word) {
this.word = word;
return this;
}
public String getWord() {
return this.word;
}
public QueryMinutesTextResponseBodyParagraphListSentenceListWordList setWordId(String wordId) {
this.wordId = wordId;
return this;
}
public String getWordId() {
return this.wordId;
}
}
public static class QueryMinutesTextResponseBodyParagraphListSentenceList extends TeaModel {
/**
* example:
* 7940
*/
@NameInMap("endTime")
public Long endTime;
/**
* example:
* 这里是小钉
*/
@NameInMap("sentence")
public String sentence;
/**
* example:
* 7940
*/
@NameInMap("startTime")
public Long startTime;
/**
* example:
* WFBkgJvt0xxxxSaA1jK4sgiEiE
*/
@NameInMap("unionId")
public String unionId;
@NameInMap("wordList")
public java.util.List wordList;
public static QueryMinutesTextResponseBodyParagraphListSentenceList build(java.util.Map map) throws Exception {
QueryMinutesTextResponseBodyParagraphListSentenceList self = new QueryMinutesTextResponseBodyParagraphListSentenceList();
return TeaModel.build(map, self);
}
public QueryMinutesTextResponseBodyParagraphListSentenceList setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public QueryMinutesTextResponseBodyParagraphListSentenceList setSentence(String sentence) {
this.sentence = sentence;
return this;
}
public String getSentence() {
return this.sentence;
}
public QueryMinutesTextResponseBodyParagraphListSentenceList setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public QueryMinutesTextResponseBodyParagraphListSentenceList setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
public QueryMinutesTextResponseBodyParagraphListSentenceList setWordList(java.util.List wordList) {
this.wordList = wordList;
return this;
}
public java.util.List getWordList() {
return this.wordList;
}
}
public static class QueryMinutesTextResponseBodyParagraphList extends TeaModel {
/**
* example:
* 7940
*/
@NameInMap("endTime")
public Long endTime;
/**
* example:
* 小钉
*/
@NameInMap("nickName")
public String nickName;
/**
* example:
* 嘿!你好,这里是小钉
*/
@NameInMap("paragraph")
public String paragraph;
@NameInMap("paragraphId")
public Long paragraphId;
/**
* example:
* 44444
*/
@NameInMap("recordId")
public Long recordId;
@NameInMap("sentenceList")
public java.util.List sentenceList;
/**
* example:
* 7940
*/
@NameInMap("startTime")
public Long startTime;
/**
* example:
* WFBkgJvt0xxxxSaA1jK4sgiEiE
*/
@NameInMap("unionId")
public String unionId;
public static QueryMinutesTextResponseBodyParagraphList build(java.util.Map map) throws Exception {
QueryMinutesTextResponseBodyParagraphList self = new QueryMinutesTextResponseBodyParagraphList();
return TeaModel.build(map, self);
}
public QueryMinutesTextResponseBodyParagraphList setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public QueryMinutesTextResponseBodyParagraphList setNickName(String nickName) {
this.nickName = nickName;
return this;
}
public String getNickName() {
return this.nickName;
}
public QueryMinutesTextResponseBodyParagraphList setParagraph(String paragraph) {
this.paragraph = paragraph;
return this;
}
public String getParagraph() {
return this.paragraph;
}
public QueryMinutesTextResponseBodyParagraphList setParagraphId(Long paragraphId) {
this.paragraphId = paragraphId;
return this;
}
public Long getParagraphId() {
return this.paragraphId;
}
public QueryMinutesTextResponseBodyParagraphList setRecordId(Long recordId) {
this.recordId = recordId;
return this;
}
public Long getRecordId() {
return this.recordId;
}
public QueryMinutesTextResponseBodyParagraphList setSentenceList(java.util.List sentenceList) {
this.sentenceList = sentenceList;
return this;
}
public java.util.List getSentenceList() {
return this.sentenceList;
}
public QueryMinutesTextResponseBodyParagraphList setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public QueryMinutesTextResponseBodyParagraphList setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy