com.aliyun.dingtalklink_1_0.models.SendInteractiveOTOMessageResponseBody 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.dingtalklink_1_0.models;
import com.aliyun.tea.*;
public class SendInteractiveOTOMessageResponseBody extends TeaModel {
@NameInMap("requestId")
public String requestId;
/**
* This parameter is required.
*/
@NameInMap("result")
public SendInteractiveOTOMessageResponseBodyResult result;
public static SendInteractiveOTOMessageResponseBody build(java.util.Map map) throws Exception {
SendInteractiveOTOMessageResponseBody self = new SendInteractiveOTOMessageResponseBody();
return TeaModel.build(map, self);
}
public SendInteractiveOTOMessageResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public SendInteractiveOTOMessageResponseBody setResult(SendInteractiveOTOMessageResponseBodyResult result) {
this.result = result;
return this;
}
public SendInteractiveOTOMessageResponseBodyResult getResult() {
return this.result;
}
public static class SendInteractiveOTOMessageResponseBodyResult extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("openPushId")
public String openPushId;
public static SendInteractiveOTOMessageResponseBodyResult build(java.util.Map map) throws Exception {
SendInteractiveOTOMessageResponseBodyResult self = new SendInteractiveOTOMessageResponseBodyResult();
return TeaModel.build(map, self);
}
public SendInteractiveOTOMessageResponseBodyResult setOpenPushId(String openPushId) {
this.openPushId = openPushId;
return this;
}
public String getOpenPushId() {
return this.openPushId;
}
}
}