/** * 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 { BackupKeySharesToLocationsRequestLocations } from './BackupKeySharesToLocationsRequestLocations'; /** * * @export * @interface BackupKeySharesToLocationsRequest */ export interface BackupKeySharesToLocationsRequest { /** * * @type {string} * @memberof BackupKeySharesToLocationsRequest */ passwordUpdateBatchId?: string; /** * Identifier of the share set (WaasWallets row) being activated. SDKs * that already receive shareSetId from the ceremony_complete event * should echo it back here. Optional for backwards compatibility — when * omitted, the active rootUser share set is resolved from walletId. * @type {string} * @memberof BackupKeySharesToLocationsRequest */ shareSetId?: string | null; /** * 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;