Google_YoutubeService.php
28.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
<?php
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
/**
* The "channels" collection of methods.
* Typical usage is:
* <code>
* $youtubeService = new Google_YoutubeService(...);
* $channels = $youtubeService->channels;
* </code>
*/
class Google_ChannelsServiceResource extends Google_ServiceResource {
/**
* Browse the YouTube channel collection. Either the 'id' or 'mine' parameter must be set.
* (channels.list)
*
* @param string $part Parts of the channel resource to be returned.
* @param array $optParams Optional parameters.
*
* @opt_param string id YouTube IDs of the channels to be returned.
* @opt_param string mine Flag indicating only return the channel ids of the authenticated user.
* @return Google_ChannelListResponse
*/
public function listChannels($part, $optParams = array()) {
$params = array('part' => $part);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_ChannelListResponse($data);
} else {
return $data;
}
}
}
/**
* The "search" collection of methods.
* Typical usage is:
* <code>
* $youtubeService = new Google_YoutubeService(...);
* $search = $youtubeService->search;
* </code>
*/
class Google_SearchServiceResource extends Google_ServiceResource {
/**
* Universal search for youtube. (search.list)
*
* @param array $optParams Optional parameters.
*
* @opt_param string q Query to search in Youtube.
* @opt_param string startIndex Index of the first search result to return.
* @opt_param string type Type of resource to search.
* @opt_param string order Sort order.
* @opt_param string maxResults Maximum number of search results to return per page.
* @return Google_SearchListResponse
*/
public function listSearch($optParams = array()) {
$params = array();
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_SearchListResponse($data);
} else {
return $data;
}
}
}
/**
* The "playlistitems" collection of methods.
* Typical usage is:
* <code>
* $youtubeService = new Google_YoutubeService(...);
* $playlistitems = $youtubeService->playlistitems;
* </code>
*/
class Google_PlaylistitemsServiceResource extends Google_ServiceResource {
/**
* Browse the YouTube playlist collection. (playlistitems.list)
*
* @param string $part Parts of the playlist resource to be returned.
* @param array $optParams Optional parameters.
*
* @opt_param string startIndex Index of the first element to return (starts at 0)
* @opt_param string playlistId Retrieves playlist items from the given playlist id.
* @opt_param string id YouTube IDs of the playlists to be returned.
* @opt_param string maxResults Maximum number of results to return
* @return Google_PlaylistItemListResponse
*/
public function listPlaylistitems($part, $optParams = array()) {
$params = array('part' => $part);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_PlaylistItemListResponse($data);
} else {
return $data;
}
}
}
/**
* The "playlists" collection of methods.
* Typical usage is:
* <code>
* $youtubeService = new Google_YoutubeService(...);
* $playlists = $youtubeService->playlists;
* </code>
*/
class Google_PlaylistsServiceResource extends Google_ServiceResource {
/**
* Browse the YouTube playlist collection. (playlists.list)
*
* @param string $id YouTube IDs of the playlists to be returned.
* @param string $part Parts of the playlist resource to be returned.
* @param array $optParams Optional parameters.
* @return Google_PlaylistListResponse
*/
public function listPlaylists($id, $part, $optParams = array()) {
$params = array('id' => $id, 'part' => $part);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_PlaylistListResponse($data);
} else {
return $data;
}
}
}
/**
* The "videos" collection of methods.
* Typical usage is:
* <code>
* $youtubeService = new Google_YoutubeService(...);
* $videos = $youtubeService->videos;
* </code>
*/
class Google_VideosServiceResource extends Google_ServiceResource {
/**
* Browse the YouTube video collection. (videos.list)
*
* @param string $id YouTube IDs of the videos to be returned.
* @param string $part Parts of the video resource to be returned.
* @param array $optParams Optional parameters.
* @return Google_VideoListResponse
*/
public function listVideos($id, $part, $optParams = array()) {
$params = array('id' => $id, 'part' => $part);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_VideoListResponse($data);
} else {
return $data;
}
}
}
/**
* Service definition for Google_Youtube (v3alpha).
*
* <p>
* Programmatic access to YouTube features.
* </p>
*
* <p>
* For more information about this service, see the
* <a href="https://developers.google.com/youtube" target="_blank">API Documentation</a>
* </p>
*
* @author Google, Inc.
*/
class Google_YoutubeService extends Google_Service {
public $channels;
public $search;
public $playlistitems;
public $playlists;
public $videos;
/**
* Constructs the internal representation of the Youtube service.
*
* @param Google_Client $client
*/
public function __construct(Google_Client $client) {
$this->servicePath = 'youtube/v3alpha/';
$this->version = 'v3alpha';
$this->serviceName = 'youtube';
$client->addService($this->serviceName, $this->version);
$this->channels = new Google_ChannelsServiceResource($this, $this->serviceName, 'channels', json_decode('{"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/youtube"], "parameters": {"part": {"required": true, "type": "string", "location": "query"}, "id": {"type": "string", "location": "query"}, "mine": {"type": "string", "location": "query"}}, "id": "youtube.channels.list", "httpMethod": "GET", "path": "channels", "response": {"$ref": "ChannelListResponse"}}}}', true));
$this->search = new Google_SearchServiceResource($this, $this->serviceName, 'search', json_decode('{"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/youtube"], "parameters": {"q": {"type": "string", "location": "query"}, "startIndex": {"format": "uint32", "default": "0", "maximum": "1000", "minimum": "0", "location": "query", "type": "integer"}, "type": {"repeated": true, "enum": ["channel", "playlist", "video"], "type": "string", "location": "query"}, "order": {"default": "SEARCH_SORT_RELEVANCE", "enum": ["date", "rating", "relevance", "view_count"], "type": "string", "location": "query"}, "maxResults": {"format": "uint32", "default": "25", "maximum": "50", "minimum": "0", "location": "query", "type": "integer"}}, "response": {"$ref": "SearchListResponse"}, "httpMethod": "GET", "path": "search", "id": "youtube.search.list"}}}', true));
$this->playlistitems = new Google_PlaylistitemsServiceResource($this, $this->serviceName, 'playlistitems', json_decode('{"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/youtube"], "parameters": {"startIndex": {"minimum": "0", "type": "integer", "location": "query", "format": "uint32"}, "part": {"required": true, "type": "string", "location": "query"}, "playlistId": {"type": "string", "location": "query"}, "id": {"type": "string", "location": "query"}, "maxResults": {"default": "50", "minimum": "0", "type": "integer", "location": "query", "format": "uint32"}}, "id": "youtube.playlistitems.list", "httpMethod": "GET", "path": "playlistitems", "response": {"$ref": "PlaylistItemListResponse"}}}}', true));
$this->playlists = new Google_PlaylistsServiceResource($this, $this->serviceName, 'playlists', json_decode('{"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/youtube"], "parameters": {"part": {"required": true, "type": "string", "location": "query"}, "id": {"required": true, "type": "string", "location": "query"}}, "id": "youtube.playlists.list", "httpMethod": "GET", "path": "playlists", "response": {"$ref": "PlaylistListResponse"}}}}', true));
$this->videos = new Google_VideosServiceResource($this, $this->serviceName, 'videos', json_decode('{"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/youtube"], "parameters": {"part": {"required": true, "type": "string", "location": "query"}, "id": {"required": true, "type": "string", "location": "query"}}, "id": "youtube.videos.list", "httpMethod": "GET", "path": "videos", "response": {"$ref": "VideoListResponse"}}}}', true));
}
}
class Google_Channel extends Google_Model {
public $kind;
protected $__statisticsType = 'Google_ChannelStatistics';
protected $__statisticsDataType = '';
public $statistics;
protected $__contentDetailsType = 'Google_ChannelContentDetails';
protected $__contentDetailsDataType = '';
public $contentDetails;
protected $__snippetType = 'Google_ChannelSnippet';
protected $__snippetDataType = '';
public $snippet;
public $etag;
public $id;
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setStatistics(Google_ChannelStatistics $statistics) {
$this->statistics = $statistics;
}
public function getStatistics() {
return $this->statistics;
}
public function setContentDetails(Google_ChannelContentDetails $contentDetails) {
$this->contentDetails = $contentDetails;
}
public function getContentDetails() {
return $this->contentDetails;
}
public function setSnippet(Google_ChannelSnippet $snippet) {
$this->snippet = $snippet;
}
public function getSnippet() {
return $this->snippet;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
class Google_ChannelContentDetails extends Google_Model {
public $privacyStatus;
public $uploads;
public function setPrivacyStatus($privacyStatus) {
$this->privacyStatus = $privacyStatus;
}
public function getPrivacyStatus() {
return $this->privacyStatus;
}
public function setUploads($uploads) {
$this->uploads = $uploads;
}
public function getUploads() {
return $this->uploads;
}
}
class Google_ChannelListResponse extends Google_Model {
protected $__channelsType = 'Google_Channel';
protected $__channelsDataType = 'map';
public $channels;
public $kind;
public $etag;
public function setChannels(Google_Channel $channels) {
$this->channels = $channels;
}
public function getChannels() {
return $this->channels;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
}
class Google_ChannelSnippet extends Google_Model {
public $title;
public $description;
protected $__thumbnailsType = 'Google_Thumbnail';
protected $__thumbnailsDataType = 'map';
public $thumbnails;
public function setTitle($title) {
$this->title = $title;
}
public function getTitle() {
return $this->title;
}
public function setDescription($description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setThumbnails(Google_Thumbnail $thumbnails) {
$this->thumbnails = $thumbnails;
}
public function getThumbnails() {
return $this->thumbnails;
}
}
class Google_ChannelStatistics extends Google_Model {
public $commentCount;
public $subscriberCount;
public $videoCount;
public $viewCount;
public function setCommentCount($commentCount) {
$this->commentCount = $commentCount;
}
public function getCommentCount() {
return $this->commentCount;
}
public function setSubscriberCount($subscriberCount) {
$this->subscriberCount = $subscriberCount;
}
public function getSubscriberCount() {
return $this->subscriberCount;
}
public function setVideoCount($videoCount) {
$this->videoCount = $videoCount;
}
public function getVideoCount() {
return $this->videoCount;
}
public function setViewCount($viewCount) {
$this->viewCount = $viewCount;
}
public function getViewCount() {
return $this->viewCount;
}
}
class Google_PageInfo extends Google_Model {
public $totalResults;
public $startIndex;
public $resultPerPage;
public function setTotalResults($totalResults) {
$this->totalResults = $totalResults;
}
public function getTotalResults() {
return $this->totalResults;
}
public function setStartIndex($startIndex) {
$this->startIndex = $startIndex;
}
public function getStartIndex() {
return $this->startIndex;
}
public function setResultPerPage($resultPerPage) {
$this->resultPerPage = $resultPerPage;
}
public function getResultPerPage() {
return $this->resultPerPage;
}
}
class Google_Playlist extends Google_Model {
protected $__snippetType = 'Google_PlaylistSnippet';
protected $__snippetDataType = '';
public $snippet;
public $kind;
public $etag;
public $id;
public function setSnippet(Google_PlaylistSnippet $snippet) {
$this->snippet = $snippet;
}
public function getSnippet() {
return $this->snippet;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
class Google_PlaylistItem extends Google_Model {
protected $__snippetType = 'Google_PlaylistItemSnippet';
protected $__snippetDataType = '';
public $snippet;
public $kind;
public $etag;
public $id;
public function setSnippet(Google_PlaylistItemSnippet $snippet) {
$this->snippet = $snippet;
}
public function getSnippet() {
return $this->snippet;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
class Google_PlaylistItemListResponse extends Google_Model {
protected $__playlistItemsType = 'Google_PlaylistItem';
protected $__playlistItemsDataType = 'map';
public $playlistItems;
public $kind;
public $etag;
public function setPlaylistItems(Google_PlaylistItem $playlistItems) {
$this->playlistItems = $playlistItems;
}
public function getPlaylistItems() {
return $this->playlistItems;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
}
class Google_PlaylistItemSnippet extends Google_Model {
public $playlistId;
public $description;
public $title;
protected $__resourceIdType = 'Google_ResourceId';
protected $__resourceIdDataType = '';
public $resourceId;
public $channelId;
public $publishedAt;
public $position;
public function setPlaylistId($playlistId) {
$this->playlistId = $playlistId;
}
public function getPlaylistId() {
return $this->playlistId;
}
public function setDescription($description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setTitle($title) {
$this->title = $title;
}
public function getTitle() {
return $this->title;
}
public function setResourceId(Google_ResourceId $resourceId) {
$this->resourceId = $resourceId;
}
public function getResourceId() {
return $this->resourceId;
}
public function setChannelId($channelId) {
$this->channelId = $channelId;
}
public function getChannelId() {
return $this->channelId;
}
public function setPublishedAt($publishedAt) {
$this->publishedAt = $publishedAt;
}
public function getPublishedAt() {
return $this->publishedAt;
}
public function setPosition($position) {
$this->position = $position;
}
public function getPosition() {
return $this->position;
}
}
class Google_PlaylistListResponse extends Google_Model {
public $kind;
public $etag;
protected $__playlistsType = 'Google_Playlist';
protected $__playlistsDataType = 'map';
public $playlists;
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setPlaylists(Google_Playlist $playlists) {
$this->playlists = $playlists;
}
public function getPlaylists() {
return $this->playlists;
}
}
class Google_PlaylistSnippet extends Google_Model {
public $title;
public $channelId;
public $description;
public $publishedAt;
public $tags;
public function setTitle($title) {
$this->title = $title;
}
public function getTitle() {
return $this->title;
}
public function setChannelId($channelId) {
$this->channelId = $channelId;
}
public function getChannelId() {
return $this->channelId;
}
public function setDescription($description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setPublishedAt($publishedAt) {
$this->publishedAt = $publishedAt;
}
public function getPublishedAt() {
return $this->publishedAt;
}
public function setTags(/* array(Google_string) */ $tags) {
$this->assertIsArray($tags, 'Google_string', __METHOD__);
$this->tags = $tags;
}
public function getTags() {
return $this->tags;
}
}
class Google_ResourceId extends Google_Model {
public $kind;
public $channelId;
public $playlistId;
public $videoId;
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setChannelId($channelId) {
$this->channelId = $channelId;
}
public function getChannelId() {
return $this->channelId;
}
public function setPlaylistId($playlistId) {
$this->playlistId = $playlistId;
}
public function getPlaylistId() {
return $this->playlistId;
}
public function setVideoId($videoId) {
$this->videoId = $videoId;
}
public function getVideoId() {
return $this->videoId;
}
}
class Google_SearchListResponse extends Google_Model {
protected $__searchResultsType = 'Google_SearchResult';
protected $__searchResultsDataType = 'array';
public $searchResults;
public $kind;
public $etag;
protected $__pageInfoType = 'Google_PageInfo';
protected $__pageInfoDataType = '';
public $pageInfo;
public function setSearchResults(/* array(Google_SearchResult) */ $searchResults) {
$this->assertIsArray($searchResults, 'Google_SearchResult', __METHOD__);
$this->searchResults = $searchResults;
}
public function getSearchResults() {
return $this->searchResults;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setPageInfo(Google_PageInfo $pageInfo) {
$this->pageInfo = $pageInfo;
}
public function getPageInfo() {
return $this->pageInfo;
}
}
class Google_SearchResult extends Google_Model {
protected $__snippetType = 'Google_SearchResultSnippet';
protected $__snippetDataType = '';
public $snippet;
public $kind;
public $etag;
protected $__idType = 'Google_ResourceId';
protected $__idDataType = '';
public $id;
public function setSnippet(Google_SearchResultSnippet $snippet) {
$this->snippet = $snippet;
}
public function getSnippet() {
return $this->snippet;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setId(Google_ResourceId $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
class Google_SearchResultSnippet extends Google_Model {
public $channelId;
public $description;
public $publishedAt;
public $title;
public function setChannelId($channelId) {
$this->channelId = $channelId;
}
public function getChannelId() {
return $this->channelId;
}
public function setDescription($description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setPublishedAt($publishedAt) {
$this->publishedAt = $publishedAt;
}
public function getPublishedAt() {
return $this->publishedAt;
}
public function setTitle($title) {
$this->title = $title;
}
public function getTitle() {
return $this->title;
}
}
class Google_Thumbnail extends Google_Model {
public $url;
public function setUrl($url) {
$this->url = $url;
}
public function getUrl() {
return $this->url;
}
}
class Google_Video extends Google_Model {
protected $__statusType = 'Google_VideoStatus';
protected $__statusDataType = '';
public $status;
public $kind;
protected $__statisticsType = 'Google_VideoStatistics';
protected $__statisticsDataType = '';
public $statistics;
protected $__contentDetailsType = 'Google_VideoContentDetails';
protected $__contentDetailsDataType = '';
public $contentDetails;
protected $__snippetType = 'Google_VideoSnippet';
protected $__snippetDataType = '';
public $snippet;
protected $__playerType = 'Google_VideoPlayer';
protected $__playerDataType = '';
public $player;
public $etag;
public $id;
public function setStatus(Google_VideoStatus $status) {
$this->status = $status;
}
public function getStatus() {
return $this->status;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setStatistics(Google_VideoStatistics $statistics) {
$this->statistics = $statistics;
}
public function getStatistics() {
return $this->statistics;
}
public function setContentDetails(Google_VideoContentDetails $contentDetails) {
$this->contentDetails = $contentDetails;
}
public function getContentDetails() {
return $this->contentDetails;
}
public function setSnippet(Google_VideoSnippet $snippet) {
$this->snippet = $snippet;
}
public function getSnippet() {
return $this->snippet;
}
public function setPlayer(Google_VideoPlayer $player) {
$this->player = $player;
}
public function getPlayer() {
return $this->player;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
class Google_VideoContentDetails extends Google_Model {
public $duration;
public $aspectRatio;
public function setDuration($duration) {
$this->duration = $duration;
}
public function getDuration() {
return $this->duration;
}
public function setAspectRatio($aspectRatio) {
$this->aspectRatio = $aspectRatio;
}
public function getAspectRatio() {
return $this->aspectRatio;
}
}
class Google_VideoListResponse extends Google_Model {
public $kind;
public $etag;
protected $__videosType = 'Google_Video';
protected $__videosDataType = 'map';
public $videos;
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEtag($etag) {
$this->etag = $etag;
}
public function getEtag() {
return $this->etag;
}
public function setVideos(Google_Video $videos) {
$this->videos = $videos;
}
public function getVideos() {
return $this->videos;
}
}
class Google_VideoPlayer extends Google_Model {
public $embedHtml;
public function setEmbedHtml($embedHtml) {
$this->embedHtml = $embedHtml;
}
public function getEmbedHtml() {
return $this->embedHtml;
}
}
class Google_VideoSnippet extends Google_Model {
protected $__thumbnailsType = 'Google_Thumbnail';
protected $__thumbnailsDataType = 'map';
public $thumbnails;
public $tags;
public $channelId;
public $publishedAt;
public $title;
public $categoryId;
public $description;
public function setThumbnails(Google_Thumbnail $thumbnails) {
$this->thumbnails = $thumbnails;
}
public function getThumbnails() {
return $this->thumbnails;
}
public function setTags(/* array(Google_string) */ $tags) {
$this->assertIsArray($tags, 'Google_string', __METHOD__);
$this->tags = $tags;
}
public function getTags() {
return $this->tags;
}
public function setChannelId($channelId) {
$this->channelId = $channelId;
}
public function getChannelId() {
return $this->channelId;
}
public function setPublishedAt($publishedAt) {
$this->publishedAt = $publishedAt;
}
public function getPublishedAt() {
return $this->publishedAt;
}
public function setTitle($title) {
$this->title = $title;
}
public function getTitle() {
return $this->title;
}
public function setCategoryId($categoryId) {
$this->categoryId = $categoryId;
}
public function getCategoryId() {
return $this->categoryId;
}
public function setDescription($description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
}
class Google_VideoStatistics extends Google_Model {
public $commentCount;
public $viewCount;
public $favoriteCount;
public $dislikeCount;
public $likeCount;
public function setCommentCount($commentCount) {
$this->commentCount = $commentCount;
}
public function getCommentCount() {
return $this->commentCount;
}
public function setViewCount($viewCount) {
$this->viewCount = $viewCount;
}
public function getViewCount() {
return $this->viewCount;
}
public function setFavoriteCount($favoriteCount) {
$this->favoriteCount = $favoriteCount;
}
public function getFavoriteCount() {
return $this->favoriteCount;
}
public function setDislikeCount($dislikeCount) {
$this->dislikeCount = $dislikeCount;
}
public function getDislikeCount() {
return $this->dislikeCount;
}
public function setLikeCount($likeCount) {
$this->likeCount = $likeCount;
}
public function getLikeCount() {
return $this->likeCount;
}
}
class Google_VideoStatus extends Google_Model {
public $privacyStatus;
public $uploadStatus;
public $rejectionReason;
public $failureReason;
public function setPrivacyStatus($privacyStatus) {
$this->privacyStatus = $privacyStatus;
}
public function getPrivacyStatus() {
return $this->privacyStatus;
}
public function setUploadStatus($uploadStatus) {
$this->uploadStatus = $uploadStatus;
}
public function getUploadStatus() {
return $this->uploadStatus;
}
public function setRejectionReason($rejectionReason) {
$this->rejectionReason = $rejectionReason;
}
public function getRejectionReason() {
return $this->rejectionReason;
}
public function setFailureReason($failureReason) {
$this->failureReason = $failureReason;
}
public function getFailureReason() {
return $this->failureReason;
}
}