Interface PostView

interface PostView {
    banned_from_community: boolean;
    community: Community;
    counts: PostAggregates;
    creator: Person;
    creator_banned_from_community: boolean;
    creator_blocked: boolean;
    creator_is_admin: boolean;
    creator_is_moderator: boolean;
    hidden: boolean;
    my_vote?: number;
    post: Post;
    read: boolean;
    saved: boolean;
    subscribed: SubscribedType;
    unread_comments: number;
}

Properties

banned_from_community: boolean
community: Community
creator: Person
creator_banned_from_community: boolean
creator_blocked: boolean
creator_is_admin: boolean
creator_is_moderator: boolean
hidden: boolean
my_vote?: number
post: Post
read: boolean
saved: boolean
subscribed: SubscribedType
unread_comments: number