/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Address } from './'; /** * * @export * @interface Interface */ export interface Interface { /** * * @type {number} * @memberof Interface */ id: number; /** * * @type {string} * @memberof Interface */ device: string; /** * * @type {Array
} * @memberof Interface */ readonly addresses: Array
; /** * * @type {number} * @memberof Interface */ speed?: number | null; /** * * @type {number} * @memberof Interface */ mtu?: number; /** * * @type {boolean} * @memberof Interface */ useForMounts?: boolean; /** * * @type {number} * @memberof Interface */ priority?: number; /** * * @type {string} * @memberof Interface */ port?: string | null; } export declare function InterfaceFromJSON(json: any): Interface; export declare function InterfaceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Interface; export declare function InterfaceToJSON(value?: Interface | null): any;