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