Interface DomainBlock

interface DomainBlock {
    createdAt: string;
    domain: string;
    id: string;
    obfuscate: boolean;
    privateComment?: null | string;
    publicComment?: null | string;
    rejectMedia: boolean;
    rejectReposts: boolean;
    severity: DomainBlockSeverity;
}

Properties

createdAt: string

The create date of the domain block in the database.

domain: string

The domain of the domain block in the database.

id: string

The ID of the domain block in the database.

obfuscate: boolean

The obfuscate of the domain block.

privateComment?: null | string

The private comment of the domain.

publicComment?: null | string

The public comment of the domain.

rejectMedia: boolean

The reject media of the domain.

rejectReposts: boolean

The reject report of the domain.

The date of the application that created this account.