/** * 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 { EcdsaValidatorOptions } from './EcdsaValidatorOptions'; import { ProviderEntryPointVersionEnum } from './ProviderEntryPointVersionEnum'; import { ProviderKernelVersionEnum } from './ProviderKernelVersionEnum'; /** * * @export * @interface SmartWalletProperties */ export interface SmartWalletProperties { /** * * @type {ProviderEntryPointVersionEnum} * @memberof SmartWalletProperties */ entryPointVersion?: ProviderEntryPointVersionEnum; /** * * @type {ProviderKernelVersionEnum} * @memberof SmartWalletProperties */ kernelVersion?: ProviderKernelVersionEnum; /** * * @type {EcdsaValidatorOptions} * @memberof SmartWalletProperties */ ecdsaProviderType?: EcdsaValidatorOptions; } export declare function SmartWalletPropertiesFromJSON(json: any): SmartWalletProperties; export declare function SmartWalletPropertiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): SmartWalletProperties; export declare function SmartWalletPropertiesToJSON(value?: SmartWalletProperties | null): any;