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

com.adyen.model.nexo.SoundContent 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.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * Definition: Content of the Sound to play.
 *
 * 

Java class for SoundContent complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="SoundContent">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="SoundFormat" type="{}SoundFormatType" />
 *       <attribute name="Language" type="{}ISOLanguage2A" />
 *       <attribute name="ReferenceID" type="{}ReferenceID" />
 *       <attribute name="Text" type="{}Text" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SoundContent") public class SoundContent { @XmlAttribute(name = "SoundFormat") protected SoundFormatType soundFormat; @XmlAttribute(name = "Language") protected String language; @XmlAttribute(name = "ReferenceID") protected String referenceID; @XmlAttribute(name = "Text") protected String text; /** * Gets the value of the soundFormat property. * * @return possible object is * {@link SoundFormatType } */ public SoundFormatType getSoundFormat() { return soundFormat; } /** * Sets the value of the soundFormat property. * * @param value allowed object is * {@link SoundFormatType } */ public void setSoundFormat(SoundFormatType value) { this.soundFormat = value; } /** * Gets the value of the language property. * * @return possible object is * {@link String } */ public String getLanguage() { return language; } /** * Sets the value of the language property. * * @param value allowed object is * {@link String } */ public void setLanguage(String value) { this.language = value; } /** * Gets the value of the referenceID property. * * @return possible object is * {@link String } */ public String getReferenceID() { return referenceID; } /** * Sets the value of the referenceID property. * * @param value allowed object is * {@link String } */ public void setReferenceID(String value) { this.referenceID = value; } /** * Gets the value of the text property. * * @return possible object is * {@link String } */ public String getText() { return text; } /** * Sets the value of the text property. * * @param value allowed object is * {@link String } */ public void setText(String value) { this.text = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy