/** * 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 ExportEmbeddedWalletResponse */ export interface ExportEmbeddedWalletResponse { /** * Encrypted bundle containing the wallet private key material * @type {string} * @memberof ExportEmbeddedWalletResponse */ exportBundle: string; } export declare function ExportEmbeddedWalletResponseFromJSON(json: any): ExportEmbeddedWalletResponse; export declare function ExportEmbeddedWalletResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportEmbeddedWalletResponse; export declare function ExportEmbeddedWalletResponseToJSON(value?: ExportEmbeddedWalletResponse | null): any;