Variable zVoteConst

zVote: z.ZodObject<{
    date: z.ZodOptional<z.ZodDate>;
    memo: z.ZodOptional<z.ZodString>;
    proposalId: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>;
    txHash: z.ZodOptional<z.ZodString>;
    vote: z.ZodEnum<["None", "Yes", "No"]>;
    voter: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
    weight: z.ZodString;
}, "strip", z.ZodTypeAny, {
    date?: Date;
    memo?: string;
    proposalId: string;
    txHash?: string;
    vote: "None" | "Yes" | "No";
    voter: string;
    weight: string;
}, {
    date?: Date;
    memo?: string;
    proposalId: string;
    txHash?: string;
    vote: "None" | "Yes" | "No";
    voter: string;
    weight: string;
}>