Variable getPaymentMethodsResponseSchemaConst
getPaymentMethodsResponseSchema: ZodObject<
{
data: ZodArray<
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,
>,
>;
page: ZodReadonly<ZodInt>;
pages: ZodReadonly<ZodInt>;
results: ZodReadonly<ZodInt>;
},
$strip,
> = ...
Returns a paginated list of Payment Method objects.