import { Ipv4 } from '../Ipv4';
import { AntiphishingStateEnum } from './AntiphishingStateEnum';
/** Phishing URLs hosted on your IP */
export interface Antiphishing {
    /** Date of the event */
    creationDate: string;
    /** Internal ID of the phishing entry */
    id: number;
    /** IP address hosting the phishing URL */
    ipOnAntiphishing: Ipv4;
    /** Current state of the phishing */
    state: AntiphishingStateEnum;
    /** Phishing URL */
    urlPhishing: string;
}
//# sourceMappingURL=Antiphishing.d.ts.map