enabled = $enabled;
}
/**
* @return bool
*/
public function getEnabled()
{
return $this->enabled;
}
/**
* @param string
*/
public function setPauseAdsUntil($pauseAdsUntil)
{
$this->pauseAdsUntil = $pauseAdsUntil;
}
/**
* @return string
*/
public function getPauseAdsUntil()
{
return $this->pauseAdsUntil;
}
/**
* @param string
*/
public function setRepeatInterval($repeatInterval)
{
$this->repeatInterval = $repeatInterval;
}
/**
* @return string
*/
public function getRepeatInterval()
{
return $this->repeatInterval;
}
/**
* @param string
*/
public function setScheduleStrategy($scheduleStrategy)
{
$this->scheduleStrategy = $scheduleStrategy;
}
/**
* @return string
*/
public function getScheduleStrategy()
{
return $this->scheduleStrategy;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(CuepointSchedule::class, 'Google_Service_YouTube_CuepointSchedule');