com.aliyun.dingtalkdatacenter_1_0.models.GetEventDataResponseBody 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.dingtalkdatacenter_1_0.models;
import com.aliyun.tea.*;
public class GetEventDataResponseBody extends TeaModel {
@NameInMap("success")
public String success;
@NameInMap("value")
public java.util.Map value;
public static GetEventDataResponseBody build(java.util.Map map) throws Exception {
GetEventDataResponseBody self = new GetEventDataResponseBody();
return TeaModel.build(map, self);
}
public GetEventDataResponseBody setSuccess(String success) {
this.success = success;
return this;
}
public String getSuccess() {
return this.success;
}
public GetEventDataResponseBody setValue(java.util.Map value) {
this.value = value;
return this;
}
public java.util.Map getValue() {
return this.value;
}
}