Variable postPaymentResponseSchemaConst
postPaymentResponseSchema: ZodUnion<
readonly [
ZodObject<
{
date: ZodReadonly<ZodISODateTime>;
id: ZodReadonly<ZodInt>;
usd: ZodReadonly<ZodInt>;
},
$strip,
>,
ZodObject<
{
warnings: ZodArray<
ZodObject<{ details: ZodString; title: ZodString }, $strip>,
>;
},
$strip,
>,
],
> = ...