import * as z from "zod/v3"; export type PaymentServiceTokenCreate = { /** * The 3 or 4 digit security code often found on the card. This often referred to as the CVV or CVD. */ securityCode?: string | null | undefined; /** * The ID of the payment method to use. */ paymentServiceId: string; /** * The redirect URL to redirect a buyer to after they have authorized the payment method. */ redirectUrl: string; }; /** @internal */ export type PaymentServiceTokenCreate$Outbound = { security_code?: string | null | undefined; payment_service_id: string; redirect_url: string; }; /** @internal */ export declare const PaymentServiceTokenCreate$outboundSchema: z.ZodType; export declare function paymentServiceTokenCreateToJSON(paymentServiceTokenCreate: PaymentServiceTokenCreate): string; //# sourceMappingURL=paymentservicetokencreate.d.ts.map