import { CountryEnum } from '../coreTypes/CountryEnum';
import { IpBlock } from '../IpBlock';
import { RoutedTo } from './RoutedTo';
import { IpTypeEnum } from './IpTypeEnum';
/** Your IP linked to service */
export interface ServiceIp {
    /**  */
    canBeTerminated: boolean;
    /**  */
    country?: CountryEnum;
    /** Custom description on your ip */
    description?: string;
    /**  */
    ip: IpBlock;
    /** IP block organisation Id */
    organisationId?: string;
    /** Routage information */
    routedTo?: RoutedTo;
    /**  */
    type: IpTypeEnum;
}
//# sourceMappingURL=ServiceIp.d.ts.map