com.aliyun.dingtalkdiot_1_0.models.PushEventResponseBody 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.dingtalkdiot_1_0.models;
import com.aliyun.tea.*;
public class PushEventResponseBody extends TeaModel {
@NameInMap("eventId")
public String eventId;
public static PushEventResponseBody build(java.util.Map map) throws Exception {
PushEventResponseBody self = new PushEventResponseBody();
return TeaModel.build(map, self);
}
public PushEventResponseBody setEventId(String eventId) {
this.eventId = eventId;
return this;
}
public String getEventId() {
return this.eventId;
}
}