/** * 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. */ /** * * @export * @interface RefreshKeySharesRequest */ export interface RefreshKeySharesRequest { /** * Identifier of the active share set to refresh. 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 RefreshKeySharesRequest */ shareSetId?: string | null; } export declare function RefreshKeySharesRequestFromJSON(json: any): RefreshKeySharesRequest; export declare function RefreshKeySharesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RefreshKeySharesRequest; export declare function RefreshKeySharesRequestToJSON(value?: RefreshKeySharesRequest | null): any;