原帖

interface SquareFeed {
    collectTime: null | string;
    collected: boolean;
    commentCount: number;
    content: string;
    createdAt: string;
    enablePictureComments: boolean;
    id: string;
    isCommentForbidden: boolean;
    isFeatured: boolean;
    isSuppressed: boolean;
    likeCount: number;
    likeIcon?: string;
    liked?: boolean;
    linkInfo?: LinkInfo;
    pictures?: Picture[];
    poi?: Poi;
    readTrackInfo: ReadTrackInfo;
    repostCount: number;
    repostable: boolean;
    rollouts?: Rollouts;
    scrollingSubtitles?: ScrollingSubtitle[];
    shareCount: number;
    status: PostStatus;
    subtitle: string;
    topic?: Topic;
    type: "ORIGINAL_POST";
    urlsInText: UrlsInText[];
    user: User;
    video?: Video;
}

Hierarchy (view full)

Properties

collectTime: null | string

Unknown

收藏时间

collected: boolean

Unknown

是否收藏

commentCount: number

评论数

content: string

内容

createdAt: string

ISO-8601 格式,如 2015-03-04T00:00:00.000Z

enablePictureComments: boolean

Unknown

id: string
isCommentForbidden: boolean

是否禁止评论

isFeatured: boolean

Unknown

isSuppressed: boolean
likeCount: number

点赞数

likeIcon?: string

点赞按钮

liked?: boolean

是否点赞

linkInfo?: LinkInfo

链接

pictures?: Picture[]

图片

poi?: Poi
readTrackInfo: ReadTrackInfo

阅读时的 track 信息

repostCount: number

转发数

repostable: boolean

是否可转发

rollouts?: Rollouts
scrollingSubtitles?: ScrollingSubtitle[]

Unknown

似乎是用户的个性签名

shareCount: number

分享数

status: PostStatus

状态

subtitle: string
topic?: Topic

圈子

type: "ORIGINAL_POST"
urlsInText: UrlsInText[]
user: User

用户

video?: Video

视频