/** * 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 BackupKeySharesToLocationsResponseLocationsWithKeyShares */ export interface BackupKeySharesToLocationsResponseLocationsWithKeyShares { /** * * @type {WaasBackupOptionsEnum} * @memberof BackupKeySharesToLocationsResponseLocationsWithKeyShares */ location: WaasBackupOptionsEnum; /** * * @type {string} * @memberof BackupKeySharesToLocationsResponseLocationsWithKeyShares */ keyShareId: string; /** * * @type {string} * @memberof BackupKeySharesToLocationsResponseLocationsWithKeyShares */ externalKeyShareId: string; } export declare function BackupKeySharesToLocationsResponseLocationsWithKeySharesFromJSON(json: any): BackupKeySharesToLocationsResponseLocationsWithKeyShares; export declare function BackupKeySharesToLocationsResponseLocationsWithKeySharesFromJSONTyped(json: any, ignoreDiscriminator: boolean): BackupKeySharesToLocationsResponseLocationsWithKeyShares; export declare function BackupKeySharesToLocationsResponseLocationsWithKeySharesToJSON(value?: BackupKeySharesToLocationsResponseLocationsWithKeyShares | null): any;