import { ExternalInformation } from './gateway/ExternalInformation';
import { Interface } from './gateway/Interface';
import { GatewayModelEnum } from './GatewayModelEnum';
import { GatewayStatusEnum } from './GatewayStatusEnum';
/** Gateway */
export interface Gateway {
    /** External information */
    externalInformation?: ExternalInformation;
    /** ID of the gateway */
    id: string;
    /** Interfaces list of the gateway */
    interfaces: Interface[];
    /** Model of the gateway */
    model: GatewayModelEnum;
    /** Name of the gateway */
    name: string;
    /** Gateway region */
    region: string;
    /** Status of the gateway */
    status: GatewayStatusEnum;
}
//# sourceMappingURL=Gateway.d.ts.map