Package net.authorize.api.contract.v1
Class PaymentSimpleType
- java.lang.Object
-
- net.authorize.api.contract.v1.PaymentSimpleType
-
public class PaymentSimpleType extends Object
Java class for paymentSimpleType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="paymentSimpleType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice> <element name="creditCard" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}creditCardSimpleType"/> <element name="bankAccount" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}bankAccountType"/> </choice> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BankAccountTypebankAccountprotected CreditCardSimpleTypecreditCard
-
Constructor Summary
Constructors Constructor Description PaymentSimpleType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BankAccountTypegetBankAccount()Gets the value of the bankAccount property.CreditCardSimpleTypegetCreditCard()Gets the value of the creditCard property.voidsetBankAccount(BankAccountType value)Sets the value of the bankAccount property.voidsetCreditCard(CreditCardSimpleType value)Sets the value of the creditCard property.
-
-
-
Field Detail
-
creditCard
protected CreditCardSimpleType creditCard
-
bankAccount
protected BankAccountType bankAccount
-
-
Method Detail
-
getCreditCard
public CreditCardSimpleType getCreditCard()
Gets the value of the creditCard property.- Returns:
- possible object is
CreditCardSimpleType
-
setCreditCard
public void setCreditCard(CreditCardSimpleType value)
Sets the value of the creditCard property.- Parameters:
value- allowed object isCreditCardSimpleType
-
getBankAccount
public BankAccountType getBankAccount()
Gets the value of the bankAccount property.- Returns:
- possible object is
BankAccountType
-
setBankAccount
public void setBankAccount(BankAccountType value)
Sets the value of the bankAccount property.- Parameters:
value- allowed object isBankAccountType
-
-