Interface PersonMentionView

interface PersonMentionView {
    banned_from_community: boolean;
    comment: Comment;
    community: Community;
    counts: CommentAggregates;
    creator: Person;
    creator_banned_from_community: boolean;
    creator_blocked: boolean;
    creator_is_admin: boolean;
    creator_is_moderator: boolean;
    my_vote?: number;
    person_mention: PersonMention;
    post: Post;
    recipient: Person;
    saved: boolean;
    subscribed: SubscribedType;
}

Properties

banned_from_community: boolean
comment: Comment
community: Community
creator: Person
creator_banned_from_community: boolean
creator_blocked: boolean
creator_is_admin: boolean
creator_is_moderator: boolean
my_vote?: number
person_mention: PersonMention
post: Post
recipient: Person
saved: boolean
subscribed: SubscribedType