Class PaymentMethod
- java.lang.Object
-
- com.mercadopago.net.MPResource
-
- com.mercadopago.resources.paymentmethod.PaymentMethod
-
public class PaymentMethod extends MPResource
Payment Method resource.
-
-
Constructor Summary
Constructors Constructor Description PaymentMethod()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Long
getAccreditationTime()
How many time in minutes could happen until processing of the payment.List<String>
getAdditionalInfoNeeded()
List of additional information that must be supplied by the payer.String
getDeferredCapture()
Whether the capture can be delayed or not.List<PaymentMethodFinancialInstitutions>
getFinancialInstitutions()
Financial institution processing this payment method.String
getId()
Payment method ID.BigDecimal
getMaxAllowedAmount()
Maximum amount that can be processed with this payment method.BigDecimal
getMinAllowedAmount()
Minimum amount that can be processed with this payment method.String
getName()
Payment method name.String
getPaymentTypeId()
Types of payment method.List<String>
getProcessingModes()
Processing modes.String
getSecureThumbnail()
Logo to display in secure sites.List<PaymentMethodSettings>
getSettings()
Payment method settings.String
getStatus()
Payment method status.String
getThumbnail()
Logo to show.-
Methods inherited from class com.mercadopago.net.MPResource
canEqual, equals, getResponse, hashCode, setResponse, toString
-
-
-
-
Method Detail
-
getId
public String getId()
Payment method ID.
-
getName
public String getName()
Payment method name.
-
getPaymentTypeId
public String getPaymentTypeId()
Types of payment method.
-
getStatus
public String getStatus()
Payment method status.
-
getSecureThumbnail
public String getSecureThumbnail()
Logo to display in secure sites.
-
getThumbnail
public String getThumbnail()
Logo to show.
-
getDeferredCapture
public String getDeferredCapture()
Whether the capture can be delayed or not.
-
getSettings
public List<PaymentMethodSettings> getSettings()
Payment method settings.
-
getAdditionalInfoNeeded
public List<String> getAdditionalInfoNeeded()
List of additional information that must be supplied by the payer.
-
getMinAllowedAmount
public BigDecimal getMinAllowedAmount()
Minimum amount that can be processed with this payment method.
-
getMaxAllowedAmount
public BigDecimal getMaxAllowedAmount()
Maximum amount that can be processed with this payment method.
-
getAccreditationTime
public Long getAccreditationTime()
How many time in minutes could happen until processing of the payment.
-
getFinancialInstitutions
public List<PaymentMethodFinancialInstitutions> getFinancialInstitutions()
Financial institution processing this payment method.
-
-