Package net.authorize.api.contract.v1
Class ArrayOfFraudFilterType
- java.lang.Object
-
- net.authorize.api.contract.v1.ArrayOfFraudFilterType
-
public class ArrayOfFraudFilterType extends Object
Java class for ArrayOfFraudFilterType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ArrayOfFraudFilterType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="fraudFilter" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="1000"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<String>fraudFilter
-
Constructor Summary
Constructors Constructor Description ArrayOfFraudFilterType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getFraudFilter()Gets the value of the fraudFilter property.
-
-
-
Method Detail
-
getFraudFilter
public List<String> getFraudFilter()
Gets the value of the fraudFilter 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 fraudFilter property.For example, to add a new item, do as follows:
getFraudFilter().add(newItem);Objects of the following type(s) are allowed in the list
String
-
-