Skip to content

Variable: AddNotificationsSchema

ts
const AddNotificationsSchema: ZodObject<{
  id: ZodString;
  notificationSchemeEvents: ZodArray<ZodObject<{
     event: ZodOptional<ZodObject<{
        id: ZodString;
     }, $loose>>;
     notifications: ZodArray<ZodObject<{
        notificationType: ZodString;
        parameter: ZodOptional<ZodString>;
     }, $loose>>;
  }, $loose>>;
}, $strip>;

Defined in: src/cloud/parameters/addNotifications.ts:4