Variable: AddNotificationsDetailsSchema
ts
const AddNotificationsDetailsSchema: ZodObject<{
notificationSchemeEvents: ZodArray<ZodObject<{
event: ZodOptional<ZodObject<{
id: ZodString;
}, $loose>>;
notifications: ZodArray<ZodObject<{
notificationType: ZodString;
parameter: ZodOptional<ZodString>;
}, $loose>>;
}, $loose>>;
}, $loose>;Defined in: src/cloud/models/addNotificationsDetails.ts:6
Details of notifications which should be added to the notification scheme.