lemmy-js-client
    Preparing search index...

    Type Alias PostReportView

    A post report view.

    type PostReportView = {
        community: Community;
        community_actions?: CommunityActions;
        creator: Person;
        creator_banned: boolean;
        creator_banned_from_community: boolean;
        creator_is_admin: boolean;
        creator_is_moderator: boolean;
        person_actions?: PersonActions;
        post: Post;
        post_actions?: PostActions;
        post_creator: Person;
        post_report: PostReport;
        resolver?: Person;
    }
    Index

    Properties

    community: Community
    community_actions?: CommunityActions
    creator: Person
    creator_banned: boolean
    creator_banned_from_community: boolean
    creator_is_admin: boolean
    creator_is_moderator: boolean
    person_actions?: PersonActions

    post

    post: Post

    Optionalpost_actions

    post_actions?: PostActions

    post_creator

    post_creator: Person

    post_report

    post_report: PostReport
    resolver?: Person