interface IpBlock {
    comment: string;
    createdAt: string;
    expiresAt: null | number;
    id: string;
    ip: string;
    severity: IpBlockSeverity;
}

Properties

comment: string

The reason for this IP block.

createdAt: string

The create date of the ip block.

expiresAt: null | number

The number of seconds in which this IP block will expire.

id: string

The ID of the domain allow in the database.

ip: string

The IP address and prefix to block.

severity: IpBlockSeverity

The policy to apply to this IP range.