/** * 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 { ProviderEnum } from './ProviderEnum'; /** * * @export * @interface RampConfiguration */ export interface RampConfiguration { /** * * @type {ProviderEnum} * @memberof RampConfiguration */ provider: ProviderEnum; /** * Display name of the ramp provider * @type {string} * @memberof RampConfiguration */ name: string; /** * URL of the ramp provider icon image * @type {string} * @memberof RampConfiguration */ iconUrl: string; /** * URL endpoint for the ramp provider service * @type {string} * @memberof RampConfiguration */ url: string; /** * Optional QR code provided by the onramp (e.g., Crypto.com) * @type {string} * @memberof RampConfiguration */ qrCode?: string; } export declare function RampConfigurationFromJSON(json: any): RampConfiguration; export declare function RampConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): RampConfiguration; export declare function RampConfigurationToJSON(value?: RampConfiguration | null): any;