import * as z from "zod/v3"; export type PaypalDirectOrderOptions = { /** * The ID of an existing PayPal order that was already created and approved by the buyer entirely outside of Gr4vy. Gr4vy retrieves this order and authorizes (or captures) it directly, without creating an order of its own. */ orderId: string; }; /** @internal */ export type PaypalDirectOrderOptions$Outbound = { order_id: string; }; /** @internal */ export declare const PaypalDirectOrderOptions$outboundSchema: z.ZodType; export declare function paypalDirectOrderOptionsToJSON(paypalDirectOrderOptions: PaypalDirectOrderOptions): string; //# sourceMappingURL=paypaldirectorderoptions.d.ts.map