/** * 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 { ChainSettlementConfig } from './ChainSettlementConfig'; import { SettlementStrategyEnum } from './SettlementStrategyEnum'; /** * * @export * @interface SettlementConfigInput */ export interface SettlementConfigInput { /** * * @type {SettlementStrategyEnum} * @memberof SettlementConfigInput */ strategy: SettlementStrategyEnum; /** * List of settlement strategy configurations * @type {Array} * @memberof SettlementConfigInput */ settlements: Array; } export declare function SettlementConfigInputFromJSON(json: any): SettlementConfigInput; export declare function SettlementConfigInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): SettlementConfigInput; export declare function SettlementConfigInputToJSON(value?: SettlementConfigInput | null): any;