/** * 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 { RampConfiguration } from './RampConfiguration'; /** * * @export * @interface SupportedOnrampsResponse */ export interface SupportedOnrampsResponse { /** * List of supported onramp provider configurations * @type {Array} * @memberof SupportedOnrampsResponse */ onramps?: Array; } export declare function SupportedOnrampsResponseFromJSON(json: any): SupportedOnrampsResponse; export declare function SupportedOnrampsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupportedOnrampsResponse; export declare function SupportedOnrampsResponseToJSON(value?: SupportedOnrampsResponse | null): any;