com.adyen.model.nexo.AdminRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
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.XmlType;
/**
* Definition: Content of the Custom Admin Request messageType. -- Usage: Empty
*
* Java class for AdminRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AdminRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ServiceIdentification" type="{}ServiceIdentification" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AdminRequest", propOrder = {
"serviceIdentification"
})
public class AdminRequest {
/**
* The Service identification.
*/
@XmlElement(name = "ServiceIdentification")
protected String serviceIdentification;
/**
* Gets the value of the serviceIdentification property.
*
* @return possible object is {@link String }
*/
public String getServiceIdentification() {
return serviceIdentification;
}
/**
* Sets the value of the serviceIdentification property.
*
* @param value allowed object is {@link String }
*/
public void setServiceIdentification(String value) {
this.serviceIdentification = value;
}
}