Variable MJScheduledActionSchemaConst
MJScheduledActionSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Action: ZodString;
ActionID: ZodString;
CreatedByUser: ZodString;
CreatedByUserID: ZodString;
CronExpression: ZodNullable<ZodString>;
CustomCronExpression: ZodNullable<ZodString>;
DayOfMonth: ZodNullable<ZodNumber>;
DayOfWeek: ZodNullable<ZodString>;
Description: ZodNullable<ZodString>;
ID: ZodString;
IntervalDays: ZodNullable<ZodNumber>;
Month: ZodNullable<ZodString>;
Name: ZodString;
Status: ZodUnion<
[
ZodLiteral<"Active">,
ZodLiteral<"Disabled">,
ZodLiteral<"Expired">,
ZodLiteral<"Pending">,
],
>;
Timezone: ZodString;
Type: ZodUnion<
[
ZodLiteral<"Custom">,
ZodLiteral<"Daily">,
ZodLiteral<"Monthly">,
ZodLiteral<"Weekly">,
ZodLiteral<"Yearly">,
],
>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Action?: string;
ActionID?: string;
CreatedByUser?: string;
CreatedByUserID?: string;
CronExpression?: string;
CustomCronExpression?: string;
DayOfMonth?: number;
DayOfWeek?: string;
Description?: string;
ID?: string;
IntervalDays?: number;
Month?: string;
Name?: string;
Status?: "Active"
| "Disabled"
| "Pending"
| "Expired";
Timezone?: string;
Type?: "Custom" | "Daily" | "Monthly" | "Weekly" | "Yearly";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Action?: string;
ActionID?: string;
CreatedByUser?: string;
CreatedByUserID?: string;
CronExpression?: string;
CustomCronExpression?: string;
DayOfMonth?: number;
DayOfWeek?: string;
Description?: string;
ID?: string;
IntervalDays?: number;
Month?: string;
Name?: string;
Status?: "Active"
| "Disabled"
| "Pending"
| "Expired";
Timezone?: string;
Type?: "Custom" | "Daily" | "Monthly" | "Weekly" | "Yearly";
},
> = ...
zod schema definition for the entity MJ: Scheduled Actions