import type { PaymentAttribute } from "./PaymentAttribute";
/**
 * Payment Item information.
 */
export type PaymentItem = {
    /**
     * Gets or sets iD or reference to the payment to prefill.
     */
    reference?: string | null;
    /**
     * Gets or sets amount in the currency specified to prefill.
     */
    amount?: string | null;
    /**
     * Gets or sets currency for the amount to prefill.
     */
    currency?: string | null;
    /**
     * Gets or sets name of the receiver or the creditor who will receive the payment.
     */
    receiver?: string | null;
    /**
     * Gets or sets array of Payment Attributes.
     */
    attributes?: Array<PaymentAttribute> | null;
};
