Package com.adyen.model.nexo
Class SoundRequest
- java.lang.Object
-
- com.adyen.model.nexo.SoundRequest
-
public class SoundRequest extends Object
Definition: Content of the Sound Request messageType. -- Usage: It conveys the data to start a sound, stop a sound, or modify the default sound volume. The sound to play may be a preloaded sound or a text to play.Java class for SoundRequest complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SoundRequest"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="SoundContent" type="{}SoundContent"/> </sequence> <attribute name="ResponseMode" type="{}ResponseModeType" default="NotRequired" /> <attribute name="SoundAction" use="required" type="{}SoundActionType" /> <attribute name="SoundVolume" type="{}SoundVolume" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected ResponseModeTyperesponseModeThe Response mode.protected SoundActionTypesoundActionThe Sound action.protected SoundContentsoundContentThe Sound content.protected BigIntegersoundVolumeThe Sound volume.
-
Constructor Summary
Constructors Constructor Description SoundRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResponseModeTypegetResponseMode()Gets the value of the responseMode property.SoundActionTypegetSoundAction()Gets the value of the soundAction property.SoundContentgetSoundContent()Gets the value of the soundContent property.BigIntegergetSoundVolume()Gets the value of the soundVolume property.voidsetResponseMode(ResponseModeType value)Sets the value of the responseMode property.voidsetSoundAction(SoundActionType value)Sets the value of the soundAction property.voidsetSoundContent(SoundContent value)Sets the value of the soundContent property.voidsetSoundVolume(BigInteger value)Sets the value of the soundVolume property.
-
-
-
Field Detail
-
soundContent
protected SoundContent soundContent
The Sound content.
-
responseMode
protected ResponseModeType responseMode
The Response mode.
-
soundAction
protected SoundActionType soundAction
The Sound action.
-
soundVolume
protected BigInteger soundVolume
The Sound volume.
-
-
Method Detail
-
getSoundContent
public SoundContent getSoundContent()
Gets the value of the soundContent property.- Returns:
- possible object is
SoundContent
-
setSoundContent
public void setSoundContent(SoundContent value)
Sets the value of the soundContent property.- Parameters:
value- allowed object isSoundContent
-
getResponseMode
public ResponseModeType getResponseMode()
Gets the value of the responseMode property.- Returns:
- possible object is
ResponseModeType
-
setResponseMode
public void setResponseMode(ResponseModeType value)
Sets the value of the responseMode property.- Parameters:
value- allowed object isResponseModeType
-
getSoundAction
public SoundActionType getSoundAction()
Gets the value of the soundAction property.- Returns:
- possible object is
SoundActionType
-
setSoundAction
public void setSoundAction(SoundActionType value)
Sets the value of the soundAction property.- Parameters:
value- allowed object isSoundActionType
-
getSoundVolume
public BigInteger getSoundVolume()
Gets the value of the soundVolume property.- Returns:
- possible object is
BigInteger
-
setSoundVolume
public void setSoundVolume(BigInteger value)
Sets the value of the soundVolume property.- Parameters:
value- allowed object isBigInteger
-
-