/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Contains a user's notification settings * @export * @interface Settings */ export interface Settings { /** * Should the user receive email notifications? Default true. * @type {boolean} * @memberof Settings */ sendEmailNotifications?: boolean; /** * Should messages that are emailed to the user be marked as READ in Synapse? Default false. * @type {boolean} * @memberof Settings */ markEmailedMessagesAsRead?: boolean; } /** * Check if a given object implements the Settings interface. */ export declare function instanceOfSettings(value: object): value is Settings; export declare function SettingsFromJSON(json: any): Settings; export declare function SettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Settings; export declare function SettingsToJSON(json: any): Settings; export declare function SettingsToJSONTyped(value?: Settings | null, ignoreDiscriminator?: boolean): any;