Member Junction
    Preparing search index...

    Variable MJCommunicationRunSchemaConst

    MJCommunicationRunSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            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;
        },
        "strip",
        ZodTypeAny,
        {
            __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;
            Comments?: string;
            Direction?: "Receiving"
            | "Sending";
            EndedAt?: Date;
            ErrorMessage?: string;
            ID?: string;
            StartedAt?: Date;
            Status?: "Pending" | "Complete" | "Failed" | "In-Progress";
            User?: string;
            UserID?: string;
        },
    > = ...

    zod schema definition for the entity MJ: Communication Runs