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