Variable MJIntegrationSourceTypeSchemaConst
MJIntegrationSourceTypeSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Description: ZodNullable<ZodString>;
DriverClass: ZodString;
IconClass: ZodNullable<ZodString>;
ID: ZodString;
Name: ZodString;
Status: ZodUnion<[ZodLiteral<"Active">, ZodLiteral<"Inactive">]>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Description?: string;
DriverClass?: string;
IconClass?: string;
ID?: string;
Name?: string;
Status?: "Active"
| "Inactive";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Description?: string;
DriverClass?: string;
IconClass?: string;
ID?: string;
Name?: string;
Status?: "Active"
| "Inactive";
},
> = ...
zod schema definition for the entity MJ: Integration Source Types