type DirectPaymentOptions = { metadata?: { image?: string; name?: string }; mode: "direct_payment"; paymentInfo: PaymentInfo;};
Customize the display of the PayEmbed UI.
type metadata = { image?: string; name?: string };
type mode = "direct_payment";
The payment information
type paymentInfo = PaymentInfo;