export interface PayAnOrderRequest { /** * ID of the order to pay. String starting with **order_**. */ order: `order_${string}`; /** * A JSON object defined by the client. */ metadata?: object; /** * ID of the payment method. String starting with **card_** or **other_**. If not specified, the payment method is the `default_payment_method` of the customer. */ payment_method?: number; } //# sourceMappingURL=PayAnOrderRequest.d.ts.map