Variable zRespectAccountConst

zRespectAccount: z.ZodObject<{
    account: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
    groupNum: z.ZodOptional<z.ZodNumber>;
    meetingNum: z.ZodNumber;
    metadata: z.ZodObject<{
        propDescription: z.ZodOptional<z.ZodString>;
        propTitle: z.ZodOptional<z.ZodString>;
    }, "strip", z.ZodTypeAny, {
        propDescription?: string;
        propTitle?: string;
    }, {
        propDescription?: string;
        propTitle?: string;
    }>;
    mintType: z.ZodNumber;
    reason: z.ZodString;
    title: z.ZodString;
    tokenId: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
    value: z.ZodBigInt;
} & {
    propType: z.ZodLiteral<"respectAccount">;
}, "strip", z.ZodTypeAny, {
    account: string;
    groupNum?: number;
    meetingNum: number;
    metadata: {
        propDescription?: string;
        propTitle?: string;
    };
    mintType: number;
    propType: "respectAccount";
    reason: string;
    title: string;
    tokenId: string;
    value: bigint;
}, {
    account: string;
    groupNum?: number;
    meetingNum: number;
    metadata: {
        propDescription?: string;
        propTitle?: string;
    };
    mintType: number;
    propType: "respectAccount";
    reason: string;
    title: string;
    tokenId: string;
    value: bigint;
}>