/** * 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 SecurityNotifications */ export interface SecurityNotifications { /** * Send email notification when a verified credential is linked to a user account. Defaults to true. * @type {boolean} * @memberof SecurityNotifications */ verifiedCredentialLinked?: boolean; /** * Send email notification when a verified credential is unlinked from a user account. Defaults to true. * @type {boolean} * @memberof SecurityNotifications */ verifiedCredentialUnlinked?: boolean; /** * Send email notification when a user exports their embedded wallet private key. Defaults to true. * @type {boolean} * @memberof SecurityNotifications */ waasPrivateKeyExport?: boolean; /** * Send email notification when a transaction is signed with an embedded wallet. Defaults to true. * @type {boolean} * @memberof SecurityNotifications */ waasSignedTransaction?: boolean; } export declare function SecurityNotificationsFromJSON(json: any): SecurityNotifications; export declare function SecurityNotificationsFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecurityNotifications; export declare function SecurityNotificationsToJSON(value?: SecurityNotifications | null): any;