com.glookast.api.capture.playout.RequestPlaybackRate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-capture-playout Show documentation
Show all versions of api-capture-playout Show documentation
Generated artifacts used for interfacing with Glookast Products
package com.glookast.api.capture.playout;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for RequestPlaybackRate complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RequestPlaybackRate">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="playbackRate" type="{http://www.w3.org/2001/XMLSchema}double"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RequestPlaybackRate", propOrder = {
"playbackRate"
})
public class RequestPlaybackRate implements Serializable
{
protected double playbackRate;
/**
* Default no-arg constructor
*
*/
public RequestPlaybackRate() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public RequestPlaybackRate(final double playbackRate) {
this.playbackRate = playbackRate;
}
/**
* Gets the value of the playbackRate property.
*
*/
public double getPlaybackRate() {
return playbackRate;
}
/**
* Sets the value of the playbackRate property.
*
*/
public void setPlaybackRate(double value) {
this.playbackRate = value;
}
}