Class MerchantOrderPayment
- java.lang.Object
-
- com.mercadopago.resources.merchantorder.MerchantOrderPayment
-
public class MerchantOrderPayment extends Object
Payment information.
-
-
Constructor Summary
Constructors Constructor Description MerchantOrderPayment()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimalgetAmountRefunded()Amount refunded in this payment.StringgetCurrencyId()ID of the currency used in payment.OffsetDateTimegetDateApproved()Approval date.OffsetDateTimegetDateCreated()Date of creation.LonggetId()Payment ID.OffsetDateTimegetLastModified()Last modified date.StringgetOperationType()Operation type.BigDecimalgetShippingCost()Shipping fee.StringgetStatus()Payment status.StringgetStatusDetails()Gives more detailed information on the current state or rejection cause.BigDecimalgetTotalPaidAmount()Total amount paid.BigDecimalgetTransactionAmount()Product cost.
-
-
-
Method Detail
-
getId
public Long getId()
Payment ID.
-
getTransactionAmount
public BigDecimal getTransactionAmount()
Product cost.
-
getTotalPaidAmount
public BigDecimal getTotalPaidAmount()
Total amount paid.
-
getShippingCost
public BigDecimal getShippingCost()
Shipping fee.
-
getCurrencyId
public String getCurrencyId()
ID of the currency used in payment.
-
getStatus
public String getStatus()
Payment status.
-
getStatusDetails
public String getStatusDetails()
Gives more detailed information on the current state or rejection cause.
-
getOperationType
public String getOperationType()
Operation type.
-
getDateApproved
public OffsetDateTime getDateApproved()
Approval date.
-
getDateCreated
public OffsetDateTime getDateCreated()
Date of creation.
-
getLastModified
public OffsetDateTime getLastModified()
Last modified date.
-
getAmountRefunded
public BigDecimal getAmountRefunded()
Amount refunded in this payment.
-
-