/** * 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 { ChainEnum } from './ChainEnum'; import { DestinationTypeEnum } from './DestinationTypeEnum'; /** * * @export * @interface ChainDestinationConfig */ export interface ChainDestinationConfig { /** * * @type {ChainEnum} * @memberof ChainDestinationConfig */ chainName: ChainEnum; /** * * @type {DestinationTypeEnum} * @memberof ChainDestinationConfig */ type: DestinationTypeEnum; /** * * @type {string} * @memberof ChainDestinationConfig */ identifier: string; } export declare function ChainDestinationConfigFromJSON(json: any): ChainDestinationConfig; export declare function ChainDestinationConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChainDestinationConfig; export declare function ChainDestinationConfigToJSON(value?: ChainDestinationConfig | null): any;