interface PaymentPresentationData {
    amount: number;
    currency: string;
    intents?: ("PAY" | "SUBSCRIBE" | "SIGNUP" | "SIGNIN" | "DONATE")[];
    locale: string;
}

Properties

amount: number
currency: string
intents?: ("PAY" | "SUBSCRIBE" | "SIGNUP" | "SIGNIN" | "DONATE")[]
locale: string