com.aliyun.dingtalkai_interaction_1_0.models.ReplyRequest 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.dingtalkai_interaction_1_0.models;
import com.aliyun.tea.*;
public class ReplyRequest extends TeaModel {
@NameInMap("content")
public String content;
/**
* This parameter is required.
*/
@NameInMap("contentType")
public String contentType;
/**
* This parameter is required.
*/
@NameInMap("conversationToken")
public String conversationToken;
public static ReplyRequest build(java.util.Map map) throws Exception {
ReplyRequest self = new ReplyRequest();
return TeaModel.build(map, self);
}
public ReplyRequest setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public ReplyRequest setContentType(String contentType) {
this.contentType = contentType;
return this;
}
public String getContentType() {
return this.contentType;
}
public ReplyRequest setConversationToken(String conversationToken) {
this.conversationToken = conversationToken;
return this;
}
public String getConversationToken() {
return this.conversationToken;
}
}