Class P24
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.orders.P24
-
- All Implemented Interfaces:
Serializable
public class P24 extends Object implements Serializable
Information used to pay using P24(Przelewy24).- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description P24()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCountryCode()
The two-character ISO 3166-1 country code.String
getEmail()
The email address of the account holder associated with this payment method.String
getMethodDescription()
Friendly name of the payment scheme or bank used for the payment.String
getMethodId()
Numeric identifier of the payment scheme or bank used for the payment.String
getName()
The name of the account holder associated with this payment method.String
getPaymentDescriptor()
P24 generated payment description.void
setCountryCode(String countryCode)
The two-character ISO 3166-1 country code.void
setEmail(String email)
The email address of the account holder associated with this payment method.void
setMethodDescription(String methodDescription)
Friendly name of the payment scheme or bank used for the payment.void
setMethodId(String methodId)
Numeric identifier of the payment scheme or bank used for the payment.void
setName(String name)
The name of the account holder associated with this payment method.void
setPaymentDescriptor(String paymentDescriptor)
P24 generated payment description.
-
-
-
Method Detail
-
setCountryCode
public void setCountryCode(String countryCode)
The two-character ISO 3166-1 country code.
-
setEmail
public void setEmail(String email)
The email address of the account holder associated with this payment method.
-
setMethodDescription
public void setMethodDescription(String methodDescription)
Friendly name of the payment scheme or bank used for the payment.
-
setMethodId
public void setMethodId(String methodId)
Numeric identifier of the payment scheme or bank used for the payment.
-
setName
public void setName(String name)
The name of the account holder associated with this payment method.
-
setPaymentDescriptor
public void setPaymentDescriptor(String paymentDescriptor)
P24 generated payment description.
-
getCountryCode
public String getCountryCode()
The two-character ISO 3166-1 country code.
-
getEmail
public String getEmail()
The email address of the account holder associated with this payment method.
-
getMethodDescription
public String getMethodDescription()
Friendly name of the payment scheme or bank used for the payment.
-
getMethodId
public String getMethodId()
Numeric identifier of the payment scheme or bank used for the payment.
-
getName
public String getName()
The name of the account holder associated with this payment method.
-
getPaymentDescriptor
public String getPaymentDescriptor()
P24 generated payment description.
-
-