All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.volcengine.model.response.ArticleEventNotifyResponse Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
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