import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {
 *         cart: {
 *             currency: "EUR",
 *             specificAmount: 1200
 *         },
 *         contactId: 43,
 *         reference: "Invoice #INV0001"
 *     }
 */
export interface CreatePaymentRequestRequest {
    cart: Brevo.Cart;
    configuration?: Brevo.Configuration;
    /** Brevo ID of the contact requested to pay. */
    contactId: number;
    /** Description of payment request. */
    description?: string;
    notification?: Brevo.Notification;
    /** Reference of the payment request, it will appear on the payment page. */
    reference: string;
}
