/** * 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 { MoonPayCurrency } from './MoonPayCurrency'; /** * * @export * @interface MoonPayCurrenciesResponse */ export interface MoonPayCurrenciesResponse { /** * List of supported MoonPay currencies for the requested chain/network * @type {Array} * @memberof MoonPayCurrenciesResponse */ currencies: Array; } export declare function MoonPayCurrenciesResponseFromJSON(json: any): MoonPayCurrenciesResponse; export declare function MoonPayCurrenciesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoonPayCurrenciesResponse; export declare function MoonPayCurrenciesResponseToJSON(value?: MoonPayCurrenciesResponse | null): any;