com.adyen.model.nexo.POISoftware 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 io.swagger.v3.oas.annotations.media.Schema;
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: Information related to the software of the POI System which manages the Sale to POI protocol. -- Usage: Allows in a session to identify the product features of a POI System.
*
* Java class for POISoftware complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="POISoftware">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="ManufacturerID" use="required" type="{}ManufacturerID" />
* <attribute name="ApplicationName" use="required" type="{}ApplicationName" />
* <attribute name="SoftwareVersion" use="required" type="{}SoftwareVersion" />
* <attribute name="CertificationCode" use="required" type="{}CertificationCode" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "POISoftware")
public class POISoftware {
/**
* The Manufacturer id.
*/
@XmlElement(name = "ManufacturerID", required = true)
@Schema(description = "Identification of the Manufacturer")
protected String manufacturerID;
/**
* The Application name.
*/
@XmlElement(name = "ApplicationName", required = true)
@Schema(description = "Name of the software product.")
protected String applicationName;
/**
* The Software version.
*/
@XmlElement(name = "SoftwareVersion", required = true)
@Schema(description = "Version of the software product")
protected String softwareVersion;
/**
* The Certification code.
*/
@XmlElement(name = "CertificationCode", required = true)
@Schema(description = "Certification code of the software which manages the Sale to POI protocol.")
protected String certificationCode;
/**
* Gets the value of the manufacturerID property.
*
* @return possible object is {@link String }
*/
public String getManufacturerID() {
return manufacturerID;
}
/**
* Sets the value of the manufacturerID property.
*
* @param value allowed object is {@link String }
*/
public void setManufacturerID(String value) {
this.manufacturerID = value;
}
/**
* Gets the value of the applicationName property.
*
* @return possible object is {@link String }
*/
public String getApplicationName() {
return applicationName;
}
/**
* Sets the value of the applicationName property.
*
* @param value allowed object is {@link String }
*/
public void setApplicationName(String value) {
this.applicationName = value;
}
/**
* Gets the value of the softwareVersion property.
*
* @return possible object is {@link String }
*/
public String getSoftwareVersion() {
return softwareVersion;
}
/**
* Sets the value of the softwareVersion property.
*
* @param value allowed object is {@link String }
*/
public void setSoftwareVersion(String value) {
this.softwareVersion = value;
}
/**
* Gets the value of the certificationCode property.
*
* @return possible object is {@link String }
*/
public String getCertificationCode() {
return certificationCode;
}
/**
* Sets the value of the certificationCode property.
*
* @param value allowed object is {@link String }
*/
public void setCertificationCode(String value) {
this.certificationCode = value;
}
}