Variable getPaymentMethodResponseSchemaConst
getPaymentMethodResponseSchema: ZodObject<
{
created: ZodReadonly<ZodISODateTime>;
data: ZodUnion<
readonly [
ZodObject<
{
card_type: ZodReadonly<ZodString>;
expiry: ZodReadonly<ZodString>;
last_four: ZodReadonly<ZodString>;
},
$strip,
>,
ZodObject<
{
card_type: ZodReadonly<ZodString>;
expiry: ZodReadonly<ZodString>;
last_four: ZodReadonly<ZodString>;
},
$strip,
>,
ZodObject<
{ email: ZodReadonly<ZodString>; paypal_id: ZodReadonly<ZodString> },
$strip,
>,
],
>;
id: ZodInt;
is_default: ZodBoolean;
type: ZodEnum<
{
credit_card: "credit_card";
google_pay: "google_pay";
paypal: "paypal";
},
>;
},
$strip,
> = ...
Payment Method Response Object.