UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 382 B
import { Ipv4 } from '../Ipv4'; /** Spam's target information */ export interface SpamTarget { /** Timestamp when the email was sent */ date: number; /** IP address of the target */ destinationIp: Ipv4; /** The message-id of the email */ messageId: string; /** Spam score for the email */ spamscore: number; } //# sourceMappingURL=SpamTarget.d.ts.map