UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

29 lines 643 B
import { CountryEnum } from './CountryEnum'; import { PhoneNumber } from '../PhoneNumber'; import { IpRegistryEnum } from './IpRegistryEnum'; /** Details about an IP block organisation */ export interface Ipv4Org { /** */ abuse_mailbox: string; /** */ address: string; /** */ city: string; /** */ country: CountryEnum; /** */ firstname: string; /** */ lastname: string; /** */ organisationId: string; /** */ phone: PhoneNumber; /** */ registry: IpRegistryEnum; /** */ state?: string; /** */ zip?: string; } //# sourceMappingURL=Ipv4Org.d.ts.map