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_ActivityContentDetails extends Google_Model
19{
20  protected $bulletinType = 'Google_Service_YouTube_ActivityContentDetailsBulletin';
21  protected $bulletinDataType = '';
22  protected $channelItemType = 'Google_Service_YouTube_ActivityContentDetailsChannelItem';
23  protected $channelItemDataType = '';
24  protected $commentType = 'Google_Service_YouTube_ActivityContentDetailsComment';
25  protected $commentDataType = '';
26  protected $favoriteType = 'Google_Service_YouTube_ActivityContentDetailsFavorite';
27  protected $favoriteDataType = '';
28  protected $likeType = 'Google_Service_YouTube_ActivityContentDetailsLike';
29  protected $likeDataType = '';
30  protected $playlistItemType = 'Google_Service_YouTube_ActivityContentDetailsPlaylistItem';
31  protected $playlistItemDataType = '';
32  protected $promotedItemType = 'Google_Service_YouTube_ActivityContentDetailsPromotedItem';
33  protected $promotedItemDataType = '';
34  protected $recommendationType = 'Google_Service_YouTube_ActivityContentDetailsRecommendation';
35  protected $recommendationDataType = '';
36  protected $socialType = 'Google_Service_YouTube_ActivityContentDetailsSocial';
37  protected $socialDataType = '';
38  protected $subscriptionType = 'Google_Service_YouTube_ActivityContentDetailsSubscription';
39  protected $subscriptionDataType = '';
40  protected $uploadType = 'Google_Service_YouTube_ActivityContentDetailsUpload';
41  protected $uploadDataType = '';
42
43  /**
44   * @param Google_Service_YouTube_ActivityContentDetailsBulletin
45   */
46  public function setBulletin(Google_Service_YouTube_ActivityContentDetailsBulletin $bulletin)
47  {
48    $this->bulletin = $bulletin;
49  }
50  /**
51   * @return Google_Service_YouTube_ActivityContentDetailsBulletin
52   */
53  public function getBulletin()
54  {
55    return $this->bulletin;
56  }
57  /**
58   * @param Google_Service_YouTube_ActivityContentDetailsChannelItem
59   */
60  public function setChannelItem(Google_Service_YouTube_ActivityContentDetailsChannelItem $channelItem)
61  {
62    $this->channelItem = $channelItem;
63  }
64  /**
65   * @return Google_Service_YouTube_ActivityContentDetailsChannelItem
66   */
67  public function getChannelItem()
68  {
69    return $this->channelItem;
70  }
71  /**
72   * @param Google_Service_YouTube_ActivityContentDetailsComment
73   */
74  public function setComment(Google_Service_YouTube_ActivityContentDetailsComment $comment)
75  {
76    $this->comment = $comment;
77  }
78  /**
79   * @return Google_Service_YouTube_ActivityContentDetailsComment
80   */
81  public function getComment()
82  {
83    return $this->comment;
84  }
85  /**
86   * @param Google_Service_YouTube_ActivityContentDetailsFavorite
87   */
88  public function setFavorite(Google_Service_YouTube_ActivityContentDetailsFavorite $favorite)
89  {
90    $this->favorite = $favorite;
91  }
92  /**
93   * @return Google_Service_YouTube_ActivityContentDetailsFavorite
94   */
95  public function getFavorite()
96  {
97    return $this->favorite;
98  }
99  /**
100   * @param Google_Service_YouTube_ActivityContentDetailsLike
101   */
102  public function setLike(Google_Service_YouTube_ActivityContentDetailsLike $like)
103  {
104    $this->like = $like;
105  }
106  /**
107   * @return Google_Service_YouTube_ActivityContentDetailsLike
108   */
109  public function getLike()
110  {
111    return $this->like;
112  }
113  /**
114   * @param Google_Service_YouTube_ActivityContentDetailsPlaylistItem
115   */
116  public function setPlaylistItem(Google_Service_YouTube_ActivityContentDetailsPlaylistItem $playlistItem)
117  {
118    $this->playlistItem = $playlistItem;
119  }
120  /**
121   * @return Google_Service_YouTube_ActivityContentDetailsPlaylistItem
122   */
123  public function getPlaylistItem()
124  {
125    return $this->playlistItem;
126  }
127  /**
128   * @param Google_Service_YouTube_ActivityContentDetailsPromotedItem
129   */
130  public function setPromotedItem(Google_Service_YouTube_ActivityContentDetailsPromotedItem $promotedItem)
131  {
132    $this->promotedItem = $promotedItem;
133  }
134  /**
135   * @return Google_Service_YouTube_ActivityContentDetailsPromotedItem
136   */
137  public function getPromotedItem()
138  {
139    return $this->promotedItem;
140  }
141  /**
142   * @param Google_Service_YouTube_ActivityContentDetailsRecommendation
143   */
144  public function setRecommendation(Google_Service_YouTube_ActivityContentDetailsRecommendation $recommendation)
145  {
146    $this->recommendation = $recommendation;
147  }
148  /**
149   * @return Google_Service_YouTube_ActivityContentDetailsRecommendation
150   */
151  public function getRecommendation()
152  {
153    return $this->recommendation;
154  }
155  /**
156   * @param Google_Service_YouTube_ActivityContentDetailsSocial
157   */
158  public function setSocial(Google_Service_YouTube_ActivityContentDetailsSocial $social)
159  {
160    $this->social = $social;
161  }
162  /**
163   * @return Google_Service_YouTube_ActivityContentDetailsSocial
164   */
165  public function getSocial()
166  {
167    return $this->social;
168  }
169  /**
170   * @param Google_Service_YouTube_ActivityContentDetailsSubscription
171   */
172  public function setSubscription(Google_Service_YouTube_ActivityContentDetailsSubscription $subscription)
173  {
174    $this->subscription = $subscription;
175  }
176  /**
177   * @return Google_Service_YouTube_ActivityContentDetailsSubscription
178   */
179  public function getSubscription()
180  {
181    return $this->subscription;
182  }
183  /**
184   * @param Google_Service_YouTube_ActivityContentDetailsUpload
185   */
186  public function setUpload(Google_Service_YouTube_ActivityContentDetailsUpload $upload)
187  {
188    $this->upload = $upload;
189  }
190  /**
191   * @return Google_Service_YouTube_ActivityContentDetailsUpload
192   */
193  public function getUpload()
194  {
195    return $this->upload;
196  }
197}
198