/** * 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 WaasWalletSettings */ export interface WaasWalletSettings { /** * Whether the user has denied delegated access for this wallet * @type {boolean} * @memberof WaasWalletSettings */ hasDeniedDelegatedAccess?: boolean; /** * Whether to refresh wallet key shares on the user's next sign-on * @type {boolean} * @memberof WaasWalletSettings */ shouldRefreshOnNextSignOn?: boolean; /** * * @type {ThresholdSignatureScheme} * @memberof WaasWalletSettings */ reshareOnNextSignOn?: ThresholdSignatureScheme; /** * Whether to revoke delegated access on the user's next sign-on * @type {boolean} * @memberof WaasWalletSettings */ revokeOnNextSignOn?: boolean; } export declare function WaasWalletSettingsFromJSON(json: any): WaasWalletSettings; export declare function WaasWalletSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasWalletSettings; export declare function WaasWalletSettingsToJSON(value?: WaasWalletSettings | null): any;