/**
 * Payment attribute information.
 */
export type PaymentAttribute = {
    /**
     * Gets or sets name of the payment attribute
     */
    name?: string | null;
    /**
     * Gets or sets value of the payment attribute.
     */
    value?: string | null;
};
