@akamai/openapi-ts
    Preparing search index...

    Variable postPaymentMethodRequestSchemaConst

    postPaymentMethodRequestSchema: ZodObject<
        {
            body: ZodObject<
                {
                    data: ZodObject<
                        {
                            card_number: ZodString;
                            cvv: ZodString;
                            expiry_month: ZodInt;
                            expiry_year: ZodInt;
                        },
                        $strip,
                    >;
                    is_default: ZodBoolean;
                    type: ZodEnum<{ credit_card: "credit_card" }>;
                },
                $strip,
            >;
            path: ZodOptional<ZodNever>;
            query: ZodOptional<ZodNever>;
        },
        $strip,
    > = ...