import { Ip } from '../../../Ip';
import { TypeEnum } from './associatedEntity/TypeEnum';
/** Associated entity with a floating ip */
export interface AssociatedEntity {
    /** ID of the gateway */
    gatewayId: string;
    /** ID of the port */
    id: string;
    /** IP of the port */
    ip: Ip;
    /** Type of the port */
    type: TypeEnum;
}
//# sourceMappingURL=AssociatedEntity.d.ts.map