/** * 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 { BackupKeySharesToLocationsWithUserIdRequestLocations } from './BackupKeySharesToLocationsWithUserIdRequestLocations'; /** * * @export * @interface BackupKeySharesToLocationsRequest */ export interface BackupKeySharesToLocationsRequest { /** * * @type {string} * @memberof BackupKeySharesToLocationsRequest */ passwordUpdateBatchId?: string; /** * List of backup locations with their key share configuration * @type {Array} * @memberof BackupKeySharesToLocationsRequest */ locations: Array; } export declare function BackupKeySharesToLocationsRequestFromJSON(json: any): BackupKeySharesToLocationsRequest; export declare function BackupKeySharesToLocationsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BackupKeySharesToLocationsRequest; export declare function BackupKeySharesToLocationsRequestToJSON(value?: BackupKeySharesToLocationsRequest | null): any;