/*
 * Copyright 2014-2021 Firestack; all rights reserved.
 */
import { MoBaseDetails, moref, morefg, uuid, stringNumber } from './mo.general';

export class NetworkFullDetails<ParentType=moref, HostType=moref, VMType=moref> extends MoBaseDetails<ParentType> {
  host: HostType[];
  vm: VMType[];
  summary: NetworkSummary;
}

export class NetworkSummary {
  _type: 'NetworkSummary';
  network: moref;
  name: string;
  accessible: boolean;
  ipPoolName: string;
}
