/** * 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 RefreshKeySharesResponseAllOf */ export interface RefreshKeySharesResponseAllOf { /** * Identifier of the new pending share set produced by this refresh * ceremony. The SDK must echo this value back on the follow-up * backup call so the atomic swap targets the correct row. * @type {string} * @memberof RefreshKeySharesResponseAllOf */ shareSetId?: string | null; } export declare function RefreshKeySharesResponseAllOfFromJSON(json: any): RefreshKeySharesResponseAllOf; export declare function RefreshKeySharesResponseAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): RefreshKeySharesResponseAllOf; export declare function RefreshKeySharesResponseAllOfToJSON(value?: RefreshKeySharesResponseAllOf | null): any;