/** * 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'; /** * * @export * @interface ReshareRequest */ export interface ReshareRequest { /** * List of client-side key generation identifiers for resharing * @type {Array} * @memberof ReshareRequest */ clientKeygenIds: Array; /** * * @type {ThresholdSignatureScheme} * @memberof ReshareRequest */ oldThresholdSignatureScheme: ThresholdSignatureScheme; /** * * @type {ThresholdSignatureScheme} * @memberof ReshareRequest */ newThresholdSignatureScheme: ThresholdSignatureScheme; /** * Whether to delegate key access to the project environment * @type {boolean} * @memberof ReshareRequest */ delegateToProjectEnvironment?: boolean; /** * Whether to revoke previously delegated key access * @type {boolean} * @memberof ReshareRequest */ revokeDelegation?: boolean; } export declare function ReshareRequestFromJSON(json: any): ReshareRequest; export declare function ReshareRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReshareRequest; export declare function ReshareRequestToJSON(value?: ReshareRequest | null): any;