kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * Amount of time to play videos served to this placement before counting a * view. Applicable when skippable is true. * * @param VideoOffset $progressOffset */ public function setProgressOffset(VideoOffset $progressOffset) { $this->progressOffset = $progressOffset; } /** * @return VideoOffset */ public function getProgressOffset() { return $this->progressOffset; } /** * Amount of time to play videos served to this placement before the skip * button should appear. Applicable when skippable is true. * * @param VideoOffset $skipOffset */ public function setSkipOffset(VideoOffset $skipOffset) { $this->skipOffset = $skipOffset; } /** * @return VideoOffset */ public function getSkipOffset() { return $this->skipOffset; } /** * Whether the user can skip creatives served to this placement. * * @param bool $skippable */ public function setSkippable($skippable) { $this->skippable = $skippable; } /** * @return bool */ public function getSkippable() { return $this->skippable; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SkippableSetting::class, 'Google_Service_Dfareporting_SkippableSetting');