/** * 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 BackupKeySharesToLocationRequest */ export interface BackupKeySharesToLocationRequest { /** * * @type {WaasBackupOptionsEnum} * @memberof BackupKeySharesToLocationRequest */ location: WaasBackupOptionsEnum; } export declare function BackupKeySharesToLocationRequestFromJSON(json: any): BackupKeySharesToLocationRequest; export declare function BackupKeySharesToLocationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BackupKeySharesToLocationRequest; export declare function BackupKeySharesToLocationRequestToJSON(value?: BackupKeySharesToLocationRequest | null): any;