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;
import javax.xml.bind.annotation.XmlValue;


/**
 * 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">
 *   <simpleContent>
 *     <extension base="TextString">
 *       <attribute name="SoundFormat" type="{}SoundFormatType" />
 *       <attribute name="Language" type="{}ISOLanguage2A" />
 *       <attribute name="ReferenceID" type="{}ReferenceID" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SoundContent", propOrder = { "value" }) public class SoundContent { /** * The Value. */ @XmlValue protected String value; /** * The Sound format. */ @XmlAttribute(name = "SoundFormat") protected SoundFormatType soundFormat; /** * The Language. */ @XmlAttribute(name = "Language") protected String language; /** * The Reference id. */ @XmlAttribute(name = "ReferenceID") protected String referenceID; /** * Gets the value of the value property. * * @return possible object is {@link String } */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value allowed object is {@link String } */ public void setValue(String value) { this.value = value; } /** * 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy