/** * Serializer for toggling notification preference */ export type NotificationToggle = { /** * True to enable, False to disable this notification type for the platform */ allow_notification: boolean; };