/** * 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 { BackupKeySharesToLocationsResponseLocationsWithKeyShares } from './BackupKeySharesToLocationsResponseLocationsWithKeyShares'; /** * * @export * @interface BackupKeySharesToLocationsResponse */ export interface BackupKeySharesToLocationsResponse { /** * Human-readable status message for the backup operation * @type {string} * @memberof BackupKeySharesToLocationsResponse */ message: string; /** * * @type {string} * @memberof BackupKeySharesToLocationsResponse */ walletId: string; /** * Current status of the password update process * @type {string} * @memberof BackupKeySharesToLocationsResponse */ passwordUpdateStatus?: BackupKeySharesToLocationsResponsePasswordUpdateStatusEnum; /** * List of backup locations paired with their key share identifiers * @type {Array} * @memberof BackupKeySharesToLocationsResponse */ locationsWithKeyShares: Array; } /** * @export * @enum {string} */ export declare enum BackupKeySharesToLocationsResponsePasswordUpdateStatusEnum { Pending = "pending", Activated = "activated" } export declare function BackupKeySharesToLocationsResponseFromJSON(json: any): BackupKeySharesToLocationsResponse; export declare function BackupKeySharesToLocationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BackupKeySharesToLocationsResponse; export declare function BackupKeySharesToLocationsResponseToJSON(value?: BackupKeySharesToLocationsResponse | null): any;