/** * 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. */ /** * * @export * @interface MoonPayCurrency */ export interface MoonPayCurrency { /** * MoonPay currency code (e.g. 'eth', 'usdc_sol') * @type {string} * @memberof MoonPayCurrency */ code: string; /** * Human-readable currency name * @type {string} * @memberof MoonPayCurrency */ name: string; /** * URL of the currency icon image * @type {string} * @memberof MoonPayCurrency */ icon: string; } export declare function MoonPayCurrencyFromJSON(json: any): MoonPayCurrency; export declare function MoonPayCurrencyFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoonPayCurrency; export declare function MoonPayCurrencyToJSON(value?: MoonPayCurrency | null): any;