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 BigDecimal
getAmountRefunded()
Amount refunded in this payment.String
getCurrencyId()
ID of the currency used in payment.OffsetDateTime
getDateApproved()
Approval date.OffsetDateTime
getDateCreated()
Date of creation.Long
getId()
Payment ID.OffsetDateTime
getLastModified()
Last modified date.String
getOperationType()
Operation type.BigDecimal
getShippingCost()
Shipping fee.String
getStatus()
Payment status.String
getStatusDetails()
Gives more detailed information on the current state or rejection cause.BigDecimal
getTotalPaidAmount()
Total amount paid.BigDecimal
getTransactionAmount()
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.
-
-