/** * 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 { ThresholdSignatureScheme } from './ThresholdSignatureScheme'; import { WaasBackupOptionsEnum } from './WaasBackupOptionsEnum'; /** * * @export * @interface BackupKeySharesToLocationsWithUserIdRequestLocations */ export interface BackupKeySharesToLocationsWithUserIdRequestLocations { /** * * @type {WaasBackupOptionsEnum} * @memberof BackupKeySharesToLocationsWithUserIdRequestLocations */ location: WaasBackupOptionsEnum; /** * * @type {string} * @memberof BackupKeySharesToLocationsWithUserIdRequestLocations */ keygenId?: string; /** * * @type {ThresholdSignatureScheme} * @memberof BackupKeySharesToLocationsWithUserIdRequestLocations */ thresholdSignatureScheme?: ThresholdSignatureScheme; /** * * @type {string} * @memberof BackupKeySharesToLocationsWithUserIdRequestLocations */ externalKeyShareId?: string; } export declare function BackupKeySharesToLocationsWithUserIdRequestLocationsFromJSON(json: any): BackupKeySharesToLocationsWithUserIdRequestLocations; export declare function BackupKeySharesToLocationsWithUserIdRequestLocationsFromJSONTyped(json: any, ignoreDiscriminator: boolean): BackupKeySharesToLocationsWithUserIdRequestLocations; export declare function BackupKeySharesToLocationsWithUserIdRequestLocationsToJSON(value?: BackupKeySharesToLocationsWithUserIdRequestLocations | null): any;