/** * 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 { StorNextConnection } from './'; /** * * @export * @interface StorNextConnections */ export interface StorNextConnections { /** * * @type {Array} * @memberof StorNextConnections */ list: Array; /** * * @type {{ [key: string]: string | undefined; }} * @memberof StorNextConnections */ normal: { [key: string]: string | undefined; }; /** * * @type {{ [key: string]: string | undefined; }} * @memberof StorNextConnections */ proxy: { [key: string]: string | undefined; }; /** * * @type {{ [key: string]: string | undefined; }} * @memberof StorNextConnections */ gateway: { [key: string]: string | undefined; }; } export declare function StorNextConnectionsFromJSON(json: any): StorNextConnections; export declare function StorNextConnectionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): StorNextConnections; export declare function StorNextConnectionsToJSON(value?: StorNextConnections | null): any;