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

com.volcengine.model.stream.consumer.SingleArticleResponseV2 Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
package com.volcengine.model.stream.consumer;

import com.alibaba.fastjson.annotation.JSONField;
import com.volcengine.model.stream.CommonPoV2;
import com.volcengine.model.stream.GetListResponseV2;
import lombok.Data;

import java.util.List;
@Data
public class SingleArticleResponseV2 {
    @JSONField(name = "ResponseMetadata")
    CommonPoV2.ResponseMetadata responseMetadata;
    @JSONField(name = "Result")
    Result result;

    @Data
    public static class Result {
        @JSONField(name = "Abstract")
        String abstracts;
        @JSONField(name = "ArticleType")
        String articleType;
        @JSONField(name = "ArticleReadCount")
        long articleReadCount;
        @JSONField(name = "ArticleUrl")
        String articleUrl;
        @JSONField(name = "CommentCount")
        long commentCount;
        @JSONField(name = "CommentUrl")
        String commentUrl;
        @JSONField(name = "CoverImages")
        List coverImages;
        @JSONField(name = "CoverMode")
        long coverMode;
        @JSONField(name = "DiggCount")
        long diggCount;
        @JSONField(name = "GroupId")
        String groupId;
        @JSONField(name = "HasVideo")
        boolean hasVideo;
        @JSONField(name = "ContentImages")
        List contentImages;
        @JSONField(name = "PublishTime")
        long publishTime;
        @JSONField(name = "ShareCount")
        long shareCount;
        @JSONField(name = "ShareUrl")
        String shareUrl;
        @JSONField(name = "Title")
        String title;
        @JSONField(name = "UserInfo")
        CommonPoV2.UserInfo userInfo;
        @JSONField(name = "VideoWatchCount")
        long videoWatchCount;
        @JSONField(name = "VideoDetail")
        CommonPoV2.VideoDetail videoDetail;

        @JSONField(name = "DiggStatus")
        boolean diggStatus;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy