All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adyen.model.nexo.GetTotalsRequest Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
package com.adyen.model.nexo;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlList;
import javax.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;


/**
 * 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>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetTotalsRequest", propOrder = { "totalDetails", "totalFilter" }) public class GetTotalsRequest { /** * The Total details. */ @XmlList @XmlElement(name = "TotalDetails") protected List totalDetails; /** * The Total filter. */ @XmlElement(name = "TotalFilter") protected TotalFilter totalFilter; /** * 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 set method 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 * {@link TotalDetailsType } * * @return the total details */ public List getTotalDetails() { if (totalDetails == null) { totalDetails = new ArrayList(); } return this.totalDetails; } /** * Gets the value of the totalFilter property. * * @return possible object is {@link TotalFilter } */ public TotalFilter getTotalFilter() { return totalFilter; } /** * Sets the value of the totalFilter property. * * @param value allowed object is {@link TotalFilter } */ public void setTotalFilter(TotalFilter value) { this.totalFilter = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy