/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Network } from './Network'; /** * * @export * @interface ProjectSettingsChains */ export interface ProjectSettingsChains { /** * Display name of the chain * @type {string} * @memberof ProjectSettingsChains */ name: string; /** * Whether this chain is enabled for the project * @type {boolean} * @memberof ProjectSettingsChains */ enabled: boolean; /** * List of network configurations for this chain * @type {Array} * @memberof ProjectSettingsChains */ networks?: Array; } export declare function ProjectSettingsChainsFromJSON(json: any): ProjectSettingsChains; export declare function ProjectSettingsChainsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsChains; export declare function ProjectSettingsChainsToJSON(value?: ProjectSettingsChains | null): any;