/** * 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 { ReshareKind } from './ReshareKind'; 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; /** * What kind of share this ceremony is minting. When omitted, defaults * to `rootUser` for backwards compatibility. * @type {ReshareKind} * @memberof ReshareRequest */ reshareKind?: ReshareKind | null; /** * Identifier of the active share set this reshare ceremony runs against. * Optional for backwards compatibility — when omitted, the active * rootUser share set is resolved from walletId. SDKs that already * receive shareSetId from getWallet() should pass it here to avoid the * fallback lookup. * @type {string} * @memberof ReshareRequest */ shareSetId?: string | null; } export declare function ReshareRequestFromJSON(json: any): ReshareRequest; export declare function ReshareRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReshareRequest; export declare function ReshareRequestToJSON(value?: ReshareRequest | null): any;