Variable CommunicationRunSchemaConst
CommunicationRunSchema: ZodObject<{
Comments: ZodNullable<ZodString>;
Direction: ZodUnion<[ZodLiteral<"Receiving">, ZodLiteral<"Sending">]>;
EndedAt: ZodNullable<ZodDate>;
ErrorMessage: ZodNullable<ZodString>;
ID: ZodString;
StartedAt: ZodNullable<ZodDate>;
Status: ZodUnion<[ZodLiteral<"Complete">, ZodLiteral<"Failed">, ZodLiteral<"In-Progress">, ZodLiteral<"Pending">]>;
User: ZodString;
UserID: ZodString;
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
}, "strip", ZodTypeAny, {
Comments?: string;
Direction?: "Receiving" | "Sending";
EndedAt?: Date;
ErrorMessage?: string;
ID?: string;
StartedAt?: Date;
Status?: "Pending" | "Complete" | "Failed" | "In-Progress";
User?: string;
UserID?: string;
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
}, {
Comments?: string;
Direction?: "Receiving" | "Sending";
EndedAt?: Date;
ErrorMessage?: string;
ID?: string;
StartedAt?: Date;
Status?: "Pending" | "Complete" | "Failed" | "In-Progress";
User?: string;
UserID?: string;
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
}> = ...
Type declaration
Comments: ZodNullable<ZodString>
Direction: ZodUnion<[ZodLiteral<"Receiving">, ZodLiteral<"Sending">]>
EndedAt: ZodNullable<ZodDate>
ErrorMessage: ZodNullable<ZodString>
ID: ZodString
StartedAt: ZodNullable<ZodDate>
Status: ZodUnion<[ZodLiteral<"Complete">, ZodLiteral<"Failed">, ZodLiteral<"In-Progress">, ZodLiteral<"Pending">]>
User: ZodString
UserID: ZodString
__mj_CreatedAt: ZodDate
__mj_UpdatedAt: ZodDate
Type declaration
Optional Comments?: string
Optional Direction?: "Receiving" | "Sending"
Optional EndedAt?: Date
Optional ErrorMessage?: string
Optional ID?: string
Optional StartedAt?: Date
Optional Status?: "Pending" | "Complete" | "Failed" | "In-Progress"
Optional User?: string
Optional UserID?: string
Optional __mj_CreatedAt?: Date
Optional __mj_UpdatedAt?: Date
Type declaration
Optional Comments?: string
Optional Direction?: "Receiving" | "Sending"
Optional EndedAt?: Date
Optional ErrorMessage?: string
Optional ID?: string
Optional StartedAt?: Date
Optional Status?: "Pending" | "Complete" | "Failed" | "In-Progress"
Optional User?: string
Optional UserID?: string
Optional __mj_CreatedAt?: Date
Optional __mj_UpdatedAt?: Date
zod schema definition for the entity Communication Runs