/** * 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 ExportWaasWalletPrivateKeyRequest */ export interface ExportWaasWalletPrivateKeyRequest { /** * Unique identifier for the export session * @type {string} * @memberof ExportWaasWalletPrivateKeyRequest */ exportId: string; /** * Address derivation type of the wallet to export * @type {string} * @memberof ExportWaasWalletPrivateKeyRequest */ addressType?: string; } export declare function ExportWaasWalletPrivateKeyRequestFromJSON(json: any): ExportWaasWalletPrivateKeyRequest; export declare function ExportWaasWalletPrivateKeyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportWaasWalletPrivateKeyRequest; export declare function ExportWaasWalletPrivateKeyRequestToJSON(value?: ExportWaasWalletPrivateKeyRequest | null): any;