Member Junction
    Preparing search index...

    Variable MJCommunicationProviderSchemaConst

    MJCommunicationProviderSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            Description: ZodNullable<ZodString>;
            ID: ZodString;
            Name: ZodString;
            Status: ZodUnion<[ZodLiteral<"Active">, ZodLiteral<"Disabled">]>;
            SupportsDrafts: ZodBoolean;
            SupportsForwarding: ZodBoolean;
            SupportsReceiving: ZodBoolean;
            SupportsReplying: ZodBoolean;
            SupportsScheduledSending: ZodBoolean;
            SupportsSending: ZodBoolean;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Description?: string;
            ID?: string;
            Name?: string;
            Status?: "Active"
            | "Disabled";
            SupportsDrafts?: boolean;
            SupportsForwarding?: boolean;
            SupportsReceiving?: boolean;
            SupportsReplying?: boolean;
            SupportsScheduledSending?: boolean;
            SupportsSending?: boolean;
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Description?: string;
            ID?: string;
            Name?: string;
            Status?: "Active"
            | "Disabled";
            SupportsDrafts?: boolean;
            SupportsForwarding?: boolean;
            SupportsReceiving?: boolean;
            SupportsReplying?: boolean;
            SupportsScheduledSending?: boolean;
            SupportsSending?: boolean;
        },
    > = ...

    zod schema definition for the entity MJ: Communication Providers