Package net.authorize.api.contract.v1
Class ProcessorType
- java.lang.Object
-
- net.authorize.api.contract.v1.ProcessorType
-
public class ProcessorType extends Object
Java class for processorType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="processorType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="255"/> </restriction> </simpleType> </element> <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/> <element name="cardTypes" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ArrayOfCardType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected ArrayOfCardTypecardTypesprotected intidprotected Stringname
-
Constructor Summary
Constructors Constructor Description ProcessorType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArrayOfCardTypegetCardTypes()Gets the value of the cardTypes property.intgetId()Gets the value of the id property.StringgetName()Gets the value of the name property.voidsetCardTypes(ArrayOfCardType value)Sets the value of the cardTypes property.voidsetId(int value)Sets the value of the id property.voidsetName(String value)Sets the value of the name property.
-
-
-
Field Detail
-
name
protected String name
-
id
protected int id
-
cardTypes
protected ArrayOfCardType cardTypes
-
-
Method Detail
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getId
public int getId()
Gets the value of the id property.
-
setId
public void setId(int value)
Sets the value of the id property.
-
getCardTypes
public ArrayOfCardType getCardTypes()
Gets the value of the cardTypes property.- Returns:
- possible object is
ArrayOfCardType
-
setCardTypes
public void setCardTypes(ArrayOfCardType value)
Sets the value of the cardTypes property.- Parameters:
value- allowed object isArrayOfCardType
-
-