Class PaymentMethodRemittanceInformation
- java.lang.Object
-
- org.cxml.PaymentMethodRemittanceInformation
-
public class PaymentMethodRemittanceInformation extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected Contactcontactprotected java.lang.StringisDefaultprotected java.util.List<PaymentMethod>paymentMethodprotected java.util.List<PaymentMethodPartner>paymentMethodPartnerprotected java.lang.StringpreferredPaymentMethod
-
Constructor Summary
Constructors Constructor Description PaymentMethodRemittanceInformation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ContactgetContact()Gets the value of the contact property.java.lang.StringgetIsDefault()Gets the value of the isDefault property.java.util.List<PaymentMethod>getPaymentMethod()Gets the value of the paymentMethod property.java.util.List<PaymentMethodPartner>getPaymentMethodPartner()Gets the value of the paymentMethodPartner property.java.lang.StringgetPreferredPaymentMethod()Gets the value of the preferredPaymentMethod property.voidsetContact(Contact value)Sets the value of the contact property.voidsetIsDefault(java.lang.String value)Sets the value of the isDefault property.voidsetPreferredPaymentMethod(java.lang.String value)Sets the value of the preferredPaymentMethod property.
-
-
-
Field Detail
-
isDefault
protected java.lang.String isDefault
-
preferredPaymentMethod
protected java.lang.String preferredPaymentMethod
-
contact
protected Contact contact
-
paymentMethod
protected java.util.List<PaymentMethod> paymentMethod
-
paymentMethodPartner
protected java.util.List<PaymentMethodPartner> paymentMethodPartner
-
-
Method Detail
-
getIsDefault
public java.lang.String getIsDefault()
Gets the value of the isDefault property.- Returns:
- possible object is
String
-
setIsDefault
public void setIsDefault(java.lang.String value)
Sets the value of the isDefault property.- Parameters:
value- allowed object isString
-
getPreferredPaymentMethod
public java.lang.String getPreferredPaymentMethod()
Gets the value of the preferredPaymentMethod property.- Returns:
- possible object is
String
-
setPreferredPaymentMethod
public void setPreferredPaymentMethod(java.lang.String value)
Sets the value of the preferredPaymentMethod property.- Parameters:
value- allowed object isString
-
getContact
public Contact getContact()
Gets the value of the contact property.- Returns:
- possible object is
Contact
-
setContact
public void setContact(Contact value)
Sets the value of the contact property.- Parameters:
value- allowed object isContact
-
getPaymentMethod
public java.util.List<PaymentMethod> getPaymentMethod()
Gets the value of the paymentMethod property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the paymentMethod property.For example, to add a new item, do as follows:
getPaymentMethod().add(newItem);Objects of the following type(s) are allowed in the list
PaymentMethod
-
getPaymentMethodPartner
public java.util.List<PaymentMethodPartner> getPaymentMethodPartner()
Gets the value of the paymentMethodPartner property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the paymentMethodPartner property.For example, to add a new item, do as follows:
getPaymentMethodPartner().add(newItem);Objects of the following type(s) are allowed in the list
PaymentMethodPartner
-
-