com.aliyun.dingtalkdingmi_1_0.models.ReplyRobotRequest 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 ReplyRobotRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* {"bizParamMap":{"proxySessionId":"DINGTALK_RYnVfayNAe_4000006001201145"},"msgType":"text","text":"测试回复机器人消息"}
*/
@NameInMap("proxyMessageStr")
public String proxyMessageStr;
public static ReplyRobotRequest build(java.util.Map map) throws Exception {
ReplyRobotRequest self = new ReplyRobotRequest();
return TeaModel.build(map, self);
}
public ReplyRobotRequest setProxyMessageStr(String proxyMessageStr) {
this.proxyMessageStr = proxyMessageStr;
return this;
}
public String getProxyMessageStr() {
return this.proxyMessageStr;
}
}