com.volcengine.model.response.ArticleEventNotifyResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.response;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
@Data
public class ArticleEventNotifyResponse {
@JSONField(name = "ResponseMetadata")
ResponseMetadata responseMetadata;
@JSONField(name = "Result")
ArticleEventNotifyResult result;
@Data
public static class ArticleEventNotifyResult {
@JSONField(name = "CursorTime")
Long cursorTime;
@JSONField(name = "Items")
List items;
}
@Data
public static class ArticleEvent {
@JSONField(name = "EventType")
String eventType;
@JSONField(name = "SubEventType")
String subEventType;
@JSONField(name = "EventTime")
Long eventTime;
@JSONField(name = "ArticleId")
Long articleId;
@JSONField(name = "EventDetail")
String eventDetail;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy