Class MerchantOrderItem
- java.lang.Object
-
- com.mercadopago.resources.merchantorder.MerchantOrderItem
-
public class MerchantOrderItem extends Object
Item information.
-
-
Constructor Summary
Constructors Constructor Description MerchantOrderItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCategoryId()
Category of the item.String
getCurrencyId()
Currency ID.String
getDescription()
Item description.String
getId()
Item code.String
getPictureUrl()
Image URL.int
getQuantity()
Item's quantity.String
getTitle()
Item name.BigDecimal
getUnitPrice()
Unit price.
-
-
-
Method Detail
-
getId
public String getId()
Item code.
-
getTitle
public String getTitle()
Item name.
-
getDescription
public String getDescription()
Item description.
-
getPictureUrl
public String getPictureUrl()
Image URL.
-
getCategoryId
public String getCategoryId()
Category of the item.
-
getQuantity
public int getQuantity()
Item's quantity.
-
getUnitPrice
public BigDecimal getUnitPrice()
Unit price.
-
getCurrencyId
public String getCurrencyId()
Currency ID. ISO_4217 code.
-
-