/** * 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 BackupKeySharesToLocationsPendingResponse */ export interface BackupKeySharesToLocationsPendingResponse { /** * Human-readable status message for the pending backup operation * @type {string} * @memberof BackupKeySharesToLocationsPendingResponse */ message: string; /** * * @type {string} * @memberof BackupKeySharesToLocationsPendingResponse */ walletId: string; /** * Current status of the password update process * @type {string} * @memberof BackupKeySharesToLocationsPendingResponse */ passwordUpdateStatus: BackupKeySharesToLocationsPendingResponsePasswordUpdateStatusEnum; } /** * @export * @enum {string} */ export declare enum BackupKeySharesToLocationsPendingResponsePasswordUpdateStatusEnum { Pending = "pending" } export declare function BackupKeySharesToLocationsPendingResponseFromJSON(json: any): BackupKeySharesToLocationsPendingResponse; export declare function BackupKeySharesToLocationsPendingResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BackupKeySharesToLocationsPendingResponse; export declare function BackupKeySharesToLocationsPendingResponseToJSON(value?: BackupKeySharesToLocationsPendingResponse | null): any;