/** * 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 { ThresholdSignatureScheme } from './ThresholdSignatureScheme'; import { WaasChainEnum } from './WaasChainEnum'; /** * * @export * @interface ImportWaasPrivateKeyRequest */ export interface ImportWaasPrivateKeyRequest { /** * * @type {WaasChainEnum} * @memberof ImportWaasPrivateKeyRequest */ chain: WaasChainEnum; /** * List of client-side key generation identifiers * @type {Array} * @memberof ImportWaasPrivateKeyRequest */ clientKeygenIds: Array; /** * * @type {ThresholdSignatureScheme} * @memberof ImportWaasPrivateKeyRequest */ thresholdSignatureScheme: ThresholdSignatureScheme; /** * Optional wallet ID of an existing legacy wallet being migrated * @type {string} * @memberof ImportWaasPrivateKeyRequest */ legacyWalletId?: string; } export declare function ImportWaasPrivateKeyRequestFromJSON(json: any): ImportWaasPrivateKeyRequest; export declare function ImportWaasPrivateKeyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImportWaasPrivateKeyRequest; export declare function ImportWaasPrivateKeyRequestToJSON(value?: ImportWaasPrivateKeyRequest | null): any;