/** * 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 BackupKeySharesToLocationsWithUserIdRequest */ export interface BackupKeySharesToLocationsWithUserIdRequest { /** * The ID of the user who owns the wallet * @type {string} * @memberof BackupKeySharesToLocationsWithUserIdRequest */ userId: string; /** * Where to store key backup shares — valid values include user, dynamic, googleDrive, iCloud, external * @type {Array} * @memberof BackupKeySharesToLocationsWithUserIdRequest */ locations: Array; } export declare function BackupKeySharesToLocationsWithUserIdRequestFromJSON(json: any): BackupKeySharesToLocationsWithUserIdRequest; export declare function BackupKeySharesToLocationsWithUserIdRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BackupKeySharesToLocationsWithUserIdRequest; export declare function BackupKeySharesToLocationsWithUserIdRequestToJSON(value?: BackupKeySharesToLocationsWithUserIdRequest | null): any;