/** * 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 { WaasWalletShareSetType } from './WaasWalletShareSetType'; /** * * @export * @interface WaasShareSet */ export interface WaasShareSet { /** * Identifier of the share set (WaasWallets row id). * @type {string} * @memberof WaasShareSet */ shareSetId: string; /** * * @type {WaasWalletShareSetType} * @memberof WaasShareSet */ shareSetType: WaasWalletShareSetType; /** * * @type {ThresholdSignatureScheme} * @memberof WaasShareSet */ thresholdSignatureScheme: ThresholdSignatureScheme; /** * Timestamp when this share set was created. * @type {Date} * @memberof WaasShareSet */ createdAt: Date; } export declare function WaasShareSetFromJSON(json: any): WaasShareSet; export declare function WaasShareSetFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasShareSet; export declare function WaasShareSetToJSON(value?: WaasShareSet | null): any;