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_YouTube_ChannelSectionSnippet extends Google_Model
19{
20  public $channelId;
21  public $defaultLanguage;
22  protected $localizedType = 'Google_Service_YouTube_ChannelSectionLocalization';
23  protected $localizedDataType = '';
24  public $position;
25  public $style;
26  public $title;
27  public $type;
28
29  public function setChannelId($channelId)
30  {
31    $this->channelId = $channelId;
32  }
33  public function getChannelId()
34  {
35    return $this->channelId;
36  }
37  public function setDefaultLanguage($defaultLanguage)
38  {
39    $this->defaultLanguage = $defaultLanguage;
40  }
41  public function getDefaultLanguage()
42  {
43    return $this->defaultLanguage;
44  }
45  /**
46   * @param Google_Service_YouTube_ChannelSectionLocalization
47   */
48  public function setLocalized(Google_Service_YouTube_ChannelSectionLocalization $localized)
49  {
50    $this->localized = $localized;
51  }
52  /**
53   * @return Google_Service_YouTube_ChannelSectionLocalization
54   */
55  public function getLocalized()
56  {
57    return $this->localized;
58  }
59  public function setPosition($position)
60  {
61    $this->position = $position;
62  }
63  public function getPosition()
64  {
65    return $this->position;
66  }
67  public function setStyle($style)
68  {
69    $this->style = $style;
70  }
71  public function getStyle()
72  {
73    return $this->style;
74  }
75  public function setTitle($title)
76  {
77    $this->title = $title;
78  }
79  public function getTitle()
80  {
81    return $this->title;
82  }
83  public function setType($type)
84  {
85    $this->type = $type;
86  }
87  public function getType()
88  {
89    return $this->type;
90  }
91}
92