@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 432 B
TypeScript
import { Ipv4 } from '../Ipv4';
import { SpamStateEnum } from './SpamStateEnum';
/** Your IP spam stats */
export interface SpamIp {
/** Last date the ip was blocked */
date: string;
/** IP address which is sending spam */
ipSpamming: Ipv4;
/** Current state of the ip */
state: SpamStateEnum;
/** Time (in seconds) while the IP will be blocked */
time: number;
}
//# sourceMappingURL=SpamIp.d.ts.map