com.aliyun.dingtalkim_1_0.models.QuerySceneGroupTemplateRobotRequest 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.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class QuerySceneGroupTemplateRobotRequest extends TeaModel {
/**
* example:
* cidCtneF+XyQjcyF2ROdgSeIg==
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* example:
* ding5nbbeXXXXXXX
*/
@NameInMap("robotCode")
public String robotCode;
public static QuerySceneGroupTemplateRobotRequest build(java.util.Map map) throws Exception {
QuerySceneGroupTemplateRobotRequest self = new QuerySceneGroupTemplateRobotRequest();
return TeaModel.build(map, self);
}
public QuerySceneGroupTemplateRobotRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public QuerySceneGroupTemplateRobotRequest setRobotCode(String robotCode) {
this.robotCode = robotCode;
return this;
}
public String getRobotCode() {
return this.robotCode;
}
}