com.aliyun.dingtalkdingmi_1_0.models.AskRobotRequest 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.dingtalkdingmi_1_0.models;
import com.aliyun.tea.*;
public class AskRobotRequest extends TeaModel {
@NameInMap("dingUserId")
public String dingUserId;
/**
* This parameter is required.
*
* example:
* 小蜜机器人能做什么
*/
@NameInMap("question")
public String question;
/**
* This parameter is required.
*
* example:
* abcd1234
*/
@NameInMap("robotAppKey")
public String robotAppKey;
/**
* example:
* 1234
*/
@NameInMap("sessionUuid")
public String sessionUuid;
public static AskRobotRequest build(java.util.Map map) throws Exception {
AskRobotRequest self = new AskRobotRequest();
return TeaModel.build(map, self);
}
public AskRobotRequest setDingUserId(String dingUserId) {
this.dingUserId = dingUserId;
return this;
}
public String getDingUserId() {
return this.dingUserId;
}
public AskRobotRequest setQuestion(String question) {
this.question = question;
return this;
}
public String getQuestion() {
return this.question;
}
public AskRobotRequest setRobotAppKey(String robotAppKey) {
this.robotAppKey = robotAppKey;
return this;
}
public String getRobotAppKey() {
return this.robotAppKey;
}
public AskRobotRequest setSessionUuid(String sessionUuid) {
this.sessionUuid = sessionUuid;
return this;
}
public String getSessionUuid() {
return this.sessionUuid;
}
}