/** * 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 { WaasBackupOptionsEnum } from './WaasBackupOptionsEnum'; /** * * @export * @interface BackupKeySharesToLocationResponse */ export interface BackupKeySharesToLocationResponse { /** * Human-readable status message for the backup operation * @type {string} * @memberof BackupKeySharesToLocationResponse */ message: string; /** * * @type {string} * @memberof BackupKeySharesToLocationResponse */ walletId: string; /** * * @type {WaasBackupOptionsEnum} * @memberof BackupKeySharesToLocationResponse */ location: WaasBackupOptionsEnum; } export declare function BackupKeySharesToLocationResponseFromJSON(json: any): BackupKeySharesToLocationResponse; export declare function BackupKeySharesToLocationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BackupKeySharesToLocationResponse; export declare function BackupKeySharesToLocationResponseToJSON(value?: BackupKeySharesToLocationResponse | null): any;