UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 511 B
import { AbuseCategoryEnum } from './AbuseCategoryEnum'; import { AbuseStatusEnum } from './AbuseStatusEnum'; /** Get report API response */ export interface Abuse { /** Abuse category */ category: AbuseCategoryEnum; /** Creation date of the abuse */ creationDate: string; /** Public ID of the abuse case */ publicId: string; /** Service where is hosted the abuse */ service: string; /** Abuse case status */ status: AbuseStatusEnum; } //# sourceMappingURL=Abuse.d.ts.map