All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mercadopago.resources.payment.PaymentItem Maven / Gradle / Ivy

There is a newer version: 2.1.29
Show newest version
package com.mercadopago.resources.payment;

import java.math.BigDecimal;
import lombok.Getter;

/** PaymentItem class. */
@Getter
public class PaymentItem {
  /** Item code. */
  private String id;

  /** Item name. */
  private String title;

  /** Long item description. */
  private String description;

  /** Image URL. */
  private String pictureUrl;

  /** Category of the item. */
  private String categoryId;

  /** Item's quantity. */
  private Integer quantity;

  /** Unit price. */
  private BigDecimal unitPrice;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy