export type notificationsettings_InternalUserNotifyAboutSetting = { /** * AppID is the ID of the installed app this setting belongs to. Present only for app-declared settings. */ appId?: string; /** * DisableEmail is true when email notifications for this category are off. */ disableEmail?: boolean; /** * DisableInProduct is true when in-product notifications for this category are off. */ disableInProduct?: boolean; /** * NotificationSettingID is the ID of the app's notification setting. Present only for app-declared settings. */ notificationSettingId?: string; };