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_CommentSnippet extends Google_Model
19{
20  protected $authorChannelIdType = 'Google_Service_YouTube_CommentSnippetAuthorChannelId';
21  protected $authorChannelIdDataType = '';
22  public $authorChannelUrl;
23  public $authorDisplayName;
24  public $authorProfileImageUrl;
25  public $canRate;
26  public $channelId;
27  public $likeCount;
28  public $moderationStatus;
29  public $parentId;
30  public $publishedAt;
31  public $textDisplay;
32  public $textOriginal;
33  public $updatedAt;
34  public $videoId;
35  public $viewerRating;
36
37  /**
38   * @param Google_Service_YouTube_CommentSnippetAuthorChannelId
39   */
40  public function setAuthorChannelId(Google_Service_YouTube_CommentSnippetAuthorChannelId $authorChannelId)
41  {
42    $this->authorChannelId = $authorChannelId;
43  }
44  /**
45   * @return Google_Service_YouTube_CommentSnippetAuthorChannelId
46   */
47  public function getAuthorChannelId()
48  {
49    return $this->authorChannelId;
50  }
51  public function setAuthorChannelUrl($authorChannelUrl)
52  {
53    $this->authorChannelUrl = $authorChannelUrl;
54  }
55  public function getAuthorChannelUrl()
56  {
57    return $this->authorChannelUrl;
58  }
59  public function setAuthorDisplayName($authorDisplayName)
60  {
61    $this->authorDisplayName = $authorDisplayName;
62  }
63  public function getAuthorDisplayName()
64  {
65    return $this->authorDisplayName;
66  }
67  public function setAuthorProfileImageUrl($authorProfileImageUrl)
68  {
69    $this->authorProfileImageUrl = $authorProfileImageUrl;
70  }
71  public function getAuthorProfileImageUrl()
72  {
73    return $this->authorProfileImageUrl;
74  }
75  public function setCanRate($canRate)
76  {
77    $this->canRate = $canRate;
78  }
79  public function getCanRate()
80  {
81    return $this->canRate;
82  }
83  public function setChannelId($channelId)
84  {
85    $this->channelId = $channelId;
86  }
87  public function getChannelId()
88  {
89    return $this->channelId;
90  }
91  public function setLikeCount($likeCount)
92  {
93    $this->likeCount = $likeCount;
94  }
95  public function getLikeCount()
96  {
97    return $this->likeCount;
98  }
99  public function setModerationStatus($moderationStatus)
100  {
101    $this->moderationStatus = $moderationStatus;
102  }
103  public function getModerationStatus()
104  {
105    return $this->moderationStatus;
106  }
107  public function setParentId($parentId)
108  {
109    $this->parentId = $parentId;
110  }
111  public function getParentId()
112  {
113    return $this->parentId;
114  }
115  public function setPublishedAt($publishedAt)
116  {
117    $this->publishedAt = $publishedAt;
118  }
119  public function getPublishedAt()
120  {
121    return $this->publishedAt;
122  }
123  public function setTextDisplay($textDisplay)
124  {
125    $this->textDisplay = $textDisplay;
126  }
127  public function getTextDisplay()
128  {
129    return $this->textDisplay;
130  }
131  public function setTextOriginal($textOriginal)
132  {
133    $this->textOriginal = $textOriginal;
134  }
135  public function getTextOriginal()
136  {
137    return $this->textOriginal;
138  }
139  public function setUpdatedAt($updatedAt)
140  {
141    $this->updatedAt = $updatedAt;
142  }
143  public function getUpdatedAt()
144  {
145    return $this->updatedAt;
146  }
147  public function setVideoId($videoId)
148  {
149    $this->videoId = $videoId;
150  }
151  public function getVideoId()
152  {
153    return $this->videoId;
154  }
155  public function setViewerRating($viewerRating)
156  {
157    $this->viewerRating = $viewerRating;
158  }
159  public function getViewerRating()
160  {
161    return $this->viewerRating;
162  }
163}
164