autoPlay = $autoPlay;
}
/**
* @return bool
*/
public function getAutoPlay()
{
return $this->autoPlay;
}
/**
* @param string
*/
public function setEnd($end)
{
$this->end = $end;
}
/**
* @return string
*/
public function getEnd()
{
return $this->end;
}
/**
* @param bool
*/
public function setMute($mute)
{
$this->mute = $mute;
}
/**
* @return bool
*/
public function getMute()
{
return $this->mute;
}
/**
* @param Outline
*/
public function setOutline(Outline $outline)
{
$this->outline = $outline;
}
/**
* @return Outline
*/
public function getOutline()
{
return $this->outline;
}
/**
* @param string
*/
public function setStart($start)
{
$this->start = $start;
}
/**
* @return string
*/
public function getStart()
{
return $this->start;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(VideoProperties::class, 'Google_Service_Slides_VideoProperties');