1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18class Google_Service_Slides_VideoProperties extends Google_Model
19{
20  public $autoPlay;
21  public $end;
22  public $mute;
23  protected $outlineType = 'Google_Service_Slides_Outline';
24  protected $outlineDataType = '';
25  public $start;
26
27  public function setAutoPlay($autoPlay)
28  {
29    $this->autoPlay = $autoPlay;
30  }
31  public function getAutoPlay()
32  {
33    return $this->autoPlay;
34  }
35  public function setEnd($end)
36  {
37    $this->end = $end;
38  }
39  public function getEnd()
40  {
41    return $this->end;
42  }
43  public function setMute($mute)
44  {
45    $this->mute = $mute;
46  }
47  public function getMute()
48  {
49    return $this->mute;
50  }
51  /**
52   * @param Google_Service_Slides_Outline
53   */
54  public function setOutline(Google_Service_Slides_Outline $outline)
55  {
56    $this->outline = $outline;
57  }
58  /**
59   * @return Google_Service_Slides_Outline
60   */
61  public function getOutline()
62  {
63    return $this->outline;
64  }
65  public function setStart($start)
66  {
67    $this->start = $start;
68  }
69  public function getStart()
70  {
71    return $this->start;
72  }
73}
74