/** * 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 SupportedOfframpsResponse */ export interface SupportedOfframpsResponse { /** * List of supported offramp provider configurations * @type {Array} * @memberof SupportedOfframpsResponse */ offramps?: Array; } export declare function SupportedOfframpsResponseFromJSON(json: any): SupportedOfframpsResponse; export declare function SupportedOfframpsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupportedOfframpsResponse; export declare function SupportedOfframpsResponseToJSON(value?: SupportedOfframpsResponse | null): any;