com.payline.ws.model.Media Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payline-java-sdk Show documentation
Show all versions of payline-java-sdk Show documentation
The Payline API provides access to the various functions of the Payline payment solution. It is based on standard web service components, which include the SOAP protocol, the WSDL and XSD definition languages. These standards are supported by a large range of development tools on multiple platforms. This SDK covers all the functions of the Payline payment solution.
package com.payline.ws.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
*
* This element contains information about the customer media
*
*
* Java class for media complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="media">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="operatingSystem" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="browser" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="userAgent" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "media", namespace = "http://obj.ws.payline.experian.com", propOrder = {
"id",
"label",
"operatingSystem",
"browser",
"userAgent"
})
public class Media {
@XmlElement(required = true)
protected String id;
@XmlElement(required = true)
protected String label;
@XmlElement(required = true)
protected String operatingSystem;
@XmlElement(required = true)
protected String browser;
@XmlElement(required = true)
protected String userAgent;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the label property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Sets the value of the label property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Gets the value of the operatingSystem property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOperatingSystem() {
return operatingSystem;
}
/**
* Sets the value of the operatingSystem property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOperatingSystem(String value) {
this.operatingSystem = value;
}
/**
* Gets the value of the browser property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBrowser() {
return browser;
}
/**
* Sets the value of the browser property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBrowser(String value) {
this.browser = value;
}
/**
* Gets the value of the userAgent property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserAgent() {
return userAgent;
}
/**
* Sets the value of the userAgent property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserAgent(String value) {
this.userAgent = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy