Package com.adyen.model.nexo
Class GetTotalsRequest
- java.lang.Object
-
- com.adyen.model.nexo.GetTotalsRequest
-
public class GetTotalsRequest extends Object
Definition: Content of the Get Totals Request messageType. -- Usage: It conveys information from the Sale System related to the scope and the format of the totals to be computed by the POI System.Java class for GetTotalsRequest complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="GetTotalsRequest"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="TotalDetails" type="{}TotalDetails" minOccurs="0"/> <element name="TotalFilter" type="{}TotalFilter" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<TotalDetailsType>totalDetailsThe Total details.protected TotalFiltertotalFilterThe Total filter.
-
Constructor Summary
Constructors Constructor Description GetTotalsRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<TotalDetailsType>getTotalDetails()Gets the value of the totalDetails property.TotalFiltergetTotalFilter()Gets the value of the totalFilter property.voidsetTotalFilter(TotalFilter value)Sets the value of the totalFilter property.
-
-
-
Field Detail
-
totalDetails
protected List<TotalDetailsType> totalDetails
The Total details.
-
totalFilter
protected TotalFilter totalFilter
The Total filter.
-
-
Method Detail
-
getTotalDetails
public List<TotalDetailsType> getTotalDetails()
Gets the value of the totalDetails 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 totalDetails property.For example, to add a new item, do as follows:
getTotalDetails().add(newItem);Objects of the following type(s) are allowed in the list
TotalDetailsType- Returns:
- the total details
-
getTotalFilter
public TotalFilter getTotalFilter()
Gets the value of the totalFilter property.- Returns:
- possible object is
TotalFilter
-
setTotalFilter
public void setTotalFilter(TotalFilter value)
Sets the value of the totalFilter property.- Parameters:
value- allowed object isTotalFilter
-
-