/** * 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 { HardwareWalletEnum } from './HardwareWalletEnum'; /** * * @export * @interface HardwareWalletProperties */ export interface HardwareWalletProperties { /** * * @type {HardwareWalletEnum} * @memberof HardwareWalletProperties */ hardwareWallet?: HardwareWalletEnum; } export declare function HardwareWalletPropertiesFromJSON(json: any): HardwareWalletProperties; export declare function HardwareWalletPropertiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): HardwareWalletProperties; export declare function HardwareWalletPropertiesToJSON(value?: HardwareWalletProperties | null): any;