Package net.authorize.api.contract.v1
Class WebCheckOutDataType
- java.lang.Object
-
- net.authorize.api.contract.v1.WebCheckOutDataType
-
public class WebCheckOutDataType extends Object
Java class for webCheckOutDataType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="webCheckOutDataType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="type" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}webCheckOutTypeEnum"/> <element name="id"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <minLength value="1"/> <maxLength value="64"/> </restriction> </simpleType> </element> <element name="token" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}webCheckOutDataTypeToken" minOccurs="0"/> <element name="bankToken" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}bankAccountType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BankAccountTypebankTokenprotected Stringidprotected WebCheckOutDataTypeTokentokenprotected WebCheckOutTypeEnumtype
-
Constructor Summary
Constructors Constructor Description WebCheckOutDataType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BankAccountTypegetBankToken()Gets the value of the bankToken property.StringgetId()Gets the value of the id property.WebCheckOutDataTypeTokengetToken()Gets the value of the token property.WebCheckOutTypeEnumgetType()Gets the value of the type property.voidsetBankToken(BankAccountType value)Sets the value of the bankToken property.voidsetId(String value)Sets the value of the id property.voidsetToken(WebCheckOutDataTypeToken value)Sets the value of the token property.voidsetType(WebCheckOutTypeEnum value)Sets the value of the type property.
-
-
-
Field Detail
-
type
protected WebCheckOutTypeEnum type
-
id
protected String id
-
token
protected WebCheckOutDataTypeToken token
-
bankToken
protected BankAccountType bankToken
-
-
Method Detail
-
getType
public WebCheckOutTypeEnum getType()
Gets the value of the type property.- Returns:
- possible object is
WebCheckOutTypeEnum
-
setType
public void setType(WebCheckOutTypeEnum value)
Sets the value of the type property.- Parameters:
value- allowed object isWebCheckOutTypeEnum
-
setId
public void setId(String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
getToken
public WebCheckOutDataTypeToken getToken()
Gets the value of the token property.- Returns:
- possible object is
WebCheckOutDataTypeToken
-
setToken
public void setToken(WebCheckOutDataTypeToken value)
Sets the value of the token property.- Parameters:
value- allowed object isWebCheckOutDataTypeToken
-
getBankToken
public BankAccountType getBankToken()
Gets the value of the bankToken property.- Returns:
- possible object is
BankAccountType
-
setBankToken
public void setBankToken(BankAccountType value)
Sets the value of the bankToken property.- Parameters:
value- allowed object isBankAccountType
-
-