/** * 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 { ChainDestinationConfig } from './ChainDestinationConfig'; /** * * @export * @interface DestinationConfigInput */ export interface DestinationConfigInput { /** * List of chain-specific destination wallet configurations * @type {Array} * @memberof DestinationConfigInput */ destinations: Array; } export declare function DestinationConfigInputFromJSON(json: any): DestinationConfigInput; export declare function DestinationConfigInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): DestinationConfigInput; export declare function DestinationConfigInputToJSON(value?: DestinationConfigInput | null): any;