lemmy-js-client
    Preparing search index...

    Type Alias ModBanFromCommunity

    When someone is banned from a community.

    type ModBanFromCommunity = {
        banned: boolean;
        community_id: CommunityId;
        expires_at?: string;
        id: ModBanFromCommunityId;
        mod_person_id: PersonId;
        other_person_id: PersonId;
        published_at: string;
        reason?: string;
    }
    Index

    Properties

    banned: boolean
    community_id: CommunityId
    expires_at?: string
    mod_person_id: PersonId
    other_person_id: PersonId
    published_at: string
    reason?: string