![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkrobot_1_0.models.ExecuteRobotAiSkillRequest 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.dingtalkrobot_1_0.models;
import com.aliyun.tea.*;
public class ExecuteRobotAiSkillRequest extends TeaModel {
@NameInMap("context")
public java.util.Map context;
/**
* This parameter is required.
*/
@NameInMap("input")
public String input;
/**
* This parameter is required.
*/
@NameInMap("robotCode")
public String robotCode;
@NameInMap("skillId")
public String skillId;
public static ExecuteRobotAiSkillRequest build(java.util.Map map) throws Exception {
ExecuteRobotAiSkillRequest self = new ExecuteRobotAiSkillRequest();
return TeaModel.build(map, self);
}
public ExecuteRobotAiSkillRequest setContext(java.util.Map context) {
this.context = context;
return this;
}
public java.util.Map getContext() {
return this.context;
}
public ExecuteRobotAiSkillRequest setInput(String input) {
this.input = input;
return this;
}
public String getInput() {
return this.input;
}
public ExecuteRobotAiSkillRequest setRobotCode(String robotCode) {
this.robotCode = robotCode;
return this;
}
public String getRobotCode() {
return this.robotCode;
}
public ExecuteRobotAiSkillRequest setSkillId(String skillId) {
this.skillId = skillId;
return this;
}
public String getSkillId() {
return this.skillId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy