import { FixedIp } from './FixedIp';
/** Interface */
export interface Interface {
    /** List of ips of the interface */
    fixedIps: FixedIp[];
    /** Interface unique identifier */
    id: string;
    /** Mac address */
    macAddress: string;
    /** Network id */
    networkId: string;
    /** Openstack state */
    state: string;
    /** Network type */
    type: string;
}
//# sourceMappingURL=Interface.d.ts.map