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

com.mercadopago.resources.preference.PreferenceItem Maven / Gradle / Ivy

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

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

/** Purchased item. */
@Getter
public class PreferenceItem {
  /** 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 int quantity;

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

  /** Currency ID. ISO_4217 code. */
  private String currencyId;

  /** Category Descriptor */
  private PreferenceCategoryDescriptor categoryDescriptor;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy