PluginProbe
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) / 1.3.1
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) v1.3.1
9.1.2 9.1.1 9.1.0 9.0.2 9.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3.0 1.3.1 1.3.2 All 153 releases
wp-analytify / lib / Google / Service / Mirror.php

Mirror.php in Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) 1.3.1, at lib/Google/Service/Mirror.php

2,030 lines 47.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Copyright 2010 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
18 /**
19 * Service definition for Mirror (v1).
20 *
21 * <p>
22 * API for interacting with Glass users via the timeline.
23 * </p>
24 *
25 * <p>
26 * For more information about this service, see the API
27 * <a href="https://developers.google.com/glass" target="_blank">Documentation</a>
28 * </p>
29 *
30 * @author Google, Inc.
31 */
32 class Analytify_Google_Service_Mirror extends Analytify_Google_Service
33 {
34 /** View your location. */
35 const GLASS_LOCATION = "https://www.googleapis.com/auth/glass.location";
36 /** View and manage your Glass timeline. */
37 const GLASS_TIMELINE = "https://www.googleapis.com/auth/glass.timeline";
38
39 public $accounts;
40 public $contacts;
41 public $locations;
42 public $settings;
43 public $subscriptions;
44 public $timeline;
45 public $timeline_attachments;
46
47
48 /**
49 * Constructs the internal representation of the Mirror service.
50 *
51 * @param Analytify_Google_Client $client
52 */
53 public function __construct(Analytify_Google_Client $client)
54 {
55 parent::__construct($client);
56 $this->servicePath = 'mirror/v1/';
57 $this->version = 'v1';
58 $this->serviceName = 'mirror';
59
60 $this->accounts = new Analytify_Google_Service_Mirror_Accounts_Resource(
61 $this,
62 $this->serviceName,
63 'accounts',
64 array(
65 'methods' => array(
66 'insert' => array(
67 'path' => 'accounts/{userToken}/{accountType}/{accountName}',
68 'httpMethod' => 'POST',
69 'parameters' => array(
70 'userToken' => array(
71 'location' => 'path',
72 'type' => 'string',
73 'required' => true,
74 ),
75 'accountType' => array(
76 'location' => 'path',
77 'type' => 'string',
78 'required' => true,
79 ),
80 'accountName' => array(
81 'location' => 'path',
82 'type' => 'string',
83 'required' => true,
84 ),
85 ),
86 ),
87 )
88 )
89 );
90 $this->contacts = new Analytify_Google_Service_Mirror_Contacts_Resource(
91 $this,
92 $this->serviceName,
93 'contacts',
94 array(
95 'methods' => array(
96 'delete' => array(
97 'path' => 'contacts/{id}',
98 'httpMethod' => 'DELETE',
99 'parameters' => array(
100 'id' => array(
101 'location' => 'path',
102 'type' => 'string',
103 'required' => true,
104 ),
105 ),
106 ),'get' => array(
107 'path' => 'contacts/{id}',
108 'httpMethod' => 'GET',
109 'parameters' => array(
110 'id' => array(
111 'location' => 'path',
112 'type' => 'string',
113 'required' => true,
114 ),
115 ),
116 ),'insert' => array(
117 'path' => 'contacts',
118 'httpMethod' => 'POST',
119 'parameters' => array(),
120 ),'list' => array(
121 'path' => 'contacts',
122 'httpMethod' => 'GET',
123 'parameters' => array(),
124 ),'patch' => array(
125 'path' => 'contacts/{id}',
126 'httpMethod' => 'PATCH',
127 'parameters' => array(
128 'id' => array(
129 'location' => 'path',
130 'type' => 'string',
131 'required' => true,
132 ),
133 ),
134 ),'update' => array(
135 'path' => 'contacts/{id}',
136 'httpMethod' => 'PUT',
137 'parameters' => array(
138 'id' => array(
139 'location' => 'path',
140 'type' => 'string',
141 'required' => true,
142 ),
143 ),
144 ),
145 )
146 )
147 );
148 $this->locations = new Analytify_Google_Service_Mirror_Locations_Resource(
149 $this,
150 $this->serviceName,
151 'locations',
152 array(
153 'methods' => array(
154 'get' => array(
155 'path' => 'locations/{id}',
156 'httpMethod' => 'GET',
157 'parameters' => array(
158 'id' => array(
159 'location' => 'path',
160 'type' => 'string',
161 'required' => true,
162 ),
163 ),
164 ),'list' => array(
165 'path' => 'locations',
166 'httpMethod' => 'GET',
167 'parameters' => array(),
168 ),
169 )
170 )
171 );
172 $this->settings = new Analytify_Google_Service_Mirror_Settings_Resource(
173 $this,
174 $this->serviceName,
175 'settings',
176 array(
177 'methods' => array(
178 'get' => array(
179 'path' => 'settings/{id}',
180 'httpMethod' => 'GET',
181 'parameters' => array(
182 'id' => array(
183 'location' => 'path',
184 'type' => 'string',
185 'required' => true,
186 ),
187 ),
188 ),
189 )
190 )
191 );
192 $this->subscriptions = new Analytify_Google_Service_Mirror_Subscriptions_Resource(
193 $this,
194 $this->serviceName,
195 'subscriptions',
196 array(
197 'methods' => array(
198 'delete' => array(
199 'path' => 'subscriptions/{id}',
200 'httpMethod' => 'DELETE',
201 'parameters' => array(
202 'id' => array(
203 'location' => 'path',
204 'type' => 'string',
205 'required' => true,
206 ),
207 ),
208 ),'insert' => array(
209 'path' => 'subscriptions',
210 'httpMethod' => 'POST',
211 'parameters' => array(),
212 ),'list' => array(
213 'path' => 'subscriptions',
214 'httpMethod' => 'GET',
215 'parameters' => array(),
216 ),'update' => array(
217 'path' => 'subscriptions/{id}',
218 'httpMethod' => 'PUT',
219 'parameters' => array(
220 'id' => array(
221 'location' => 'path',
222 'type' => 'string',
223 'required' => true,
224 ),
225 ),
226 ),
227 )
228 )
229 );
230 $this->timeline = new Analytify_Google_Service_Mirror_Timeline_Resource(
231 $this,
232 $this->serviceName,
233 'timeline',
234 array(
235 'methods' => array(
236 'delete' => array(
237 'path' => 'timeline/{id}',
238 'httpMethod' => 'DELETE',
239 'parameters' => array(
240 'id' => array(
241 'location' => 'path',
242 'type' => 'string',
243 'required' => true,
244 ),
245 ),
246 ),'get' => array(
247 'path' => 'timeline/{id}',
248 'httpMethod' => 'GET',
249 'parameters' => array(
250 'id' => array(
251 'location' => 'path',
252 'type' => 'string',
253 'required' => true,
254 ),
255 ),
256 ),'insert' => array(
257 'path' => 'timeline',
258 'httpMethod' => 'POST',
259 'parameters' => array(),
260 ),'list' => array(
261 'path' => 'timeline',
262 'httpMethod' => 'GET',
263 'parameters' => array(
264 'orderBy' => array(
265 'location' => 'query',
266 'type' => 'string',
267 ),
268 'includeDeleted' => array(
269 'location' => 'query',
270 'type' => 'boolean',
271 ),
272 'maxResults' => array(
273 'location' => 'query',
274 'type' => 'integer',
275 ),
276 'pageToken' => array(
277 'location' => 'query',
278 'type' => 'string',
279 ),
280 'sourceItemId' => array(
281 'location' => 'query',
282 'type' => 'string',
283 ),
284 'pinnedOnly' => array(
285 'location' => 'query',
286 'type' => 'boolean',
287 ),
288 'bundleId' => array(
289 'location' => 'query',
290 'type' => 'string',
291 ),
292 ),
293 ),'patch' => array(
294 'path' => 'timeline/{id}',
295 'httpMethod' => 'PATCH',
296 'parameters' => array(
297 'id' => array(
298 'location' => 'path',
299 'type' => 'string',
300 'required' => true,
301 ),
302 ),
303 ),'update' => array(
304 'path' => 'timeline/{id}',
305 'httpMethod' => 'PUT',
306 'parameters' => array(
307 'id' => array(
308 'location' => 'path',
309 'type' => 'string',
310 'required' => true,
311 ),
312 ),
313 ),
314 )
315 )
316 );
317 $this->timeline_attachments = new Analytify_Google_Service_Mirror_TimelineAttachments_Resource(
318 $this,
319 $this->serviceName,
320 'attachments',
321 array(
322 'methods' => array(
323 'delete' => array(
324 'path' => 'timeline/{itemId}/attachments/{attachmentId}',
325 'httpMethod' => 'DELETE',
326 'parameters' => array(
327 'itemId' => array(
328 'location' => 'path',
329 'type' => 'string',
330 'required' => true,
331 ),
332 'attachmentId' => array(
333 'location' => 'path',
334 'type' => 'string',
335 'required' => true,
336 ),
337 ),
338 ),'get' => array(
339 'path' => 'timeline/{itemId}/attachments/{attachmentId}',
340 'httpMethod' => 'GET',
341 'parameters' => array(
342 'itemId' => array(
343 'location' => 'path',
344 'type' => 'string',
345 'required' => true,
346 ),
347 'attachmentId' => array(
348 'location' => 'path',
349 'type' => 'string',
350 'required' => true,
351 ),
352 ),
353 ),'insert' => array(
354 'path' => 'timeline/{itemId}/attachments',
355 'httpMethod' => 'POST',
356 'parameters' => array(
357 'itemId' => array(
358 'location' => 'path',
359 'type' => 'string',
360 'required' => true,
361 ),
362 ),
363 ),'list' => array(
364 'path' => 'timeline/{itemId}/attachments',
365 'httpMethod' => 'GET',
366 'parameters' => array(
367 'itemId' => array(
368 'location' => 'path',
369 'type' => 'string',
370 'required' => true,
371 ),
372 ),
373 ),
374 )
375 )
376 );
377 }
378 }
379
380
381 /**
382 * The "accounts" collection of methods.
383 * Typical usage is:
384 * <code>
385 * $mirrorService = new Analytify_Google_Service_Mirror(...);
386 * $accounts = $mirrorService->accounts;
387 * </code>
388 */
389 class Analytify_Google_Service_Mirror_Accounts_Resource extends Analytify_Google_Service_Resource
390 {
391
392 /**
393 * Inserts a new account for a user (accounts.insert)
394 *
395 * @param string $userToken
396 * The ID for the user.
397 * @param string $accountType
398 * Account type to be passed to Android Account Manager.
399 * @param string $accountName
400 * The name of the account to be passed to the Android Account Manager.
401 * @param Analytify_Google_Account $postBody
402 * @param array $optParams Optional parameters.
403 * @return Analytify_Google_Service_Mirror_Account
404 */
405 public function insert($userToken, $accountType, $accountName, Analytify_Google_Service_Mirror_Account $postBody, $optParams = array())
406 {
407 $params = array('userToken' => $userToken, 'accountType' => $accountType, 'accountName' => $accountName, 'postBody' => $postBody);
408 $params = array_merge($params, $optParams);
409 return $this->call('insert', array($params), "Analytify_Google_Service_Mirror_Account");
410 }
411 }
412
413 /**
414 * The "contacts" collection of methods.
415 * Typical usage is:
416 * <code>
417 * $mirrorService = new Analytify_Google_Service_Mirror(...);
418 * $contacts = $mirrorService->contacts;
419 * </code>
420 */
421 class Analytify_Google_Service_Mirror_Contacts_Resource extends Analytify_Google_Service_Resource
422 {
423
424 /**
425 * Deletes a contact. (contacts.delete)
426 *
427 * @param string $id
428 * The ID of the contact.
429 * @param array $optParams Optional parameters.
430 */
431 public function delete($id, $optParams = array())
432 {
433 $params = array('id' => $id);
434 $params = array_merge($params, $optParams);
435 return $this->call('delete', array($params));
436 }
437 /**
438 * Gets a single contact by ID. (contacts.get)
439 *
440 * @param string $id
441 * The ID of the contact.
442 * @param array $optParams Optional parameters.
443 * @return Analytify_Google_Service_Mirror_Contact
444 */
445 public function get($id, $optParams = array())
446 {
447 $params = array('id' => $id);
448 $params = array_merge($params, $optParams);
449 return $this->call('get', array($params), "Analytify_Google_Service_Mirror_Contact");
450 }
451 /**
452 * Inserts a new contact. (contacts.insert)
453 *
454 * @param Analytify_Google_Contact $postBody
455 * @param array $optParams Optional parameters.
456 * @return Analytify_Google_Service_Mirror_Contact
457 */
458 public function insert(Analytify_Google_Service_Mirror_Contact $postBody, $optParams = array())
459 {
460 $params = array('postBody' => $postBody);
461 $params = array_merge($params, $optParams);
462 return $this->call('insert', array($params), "Analytify_Google_Service_Mirror_Contact");
463 }
464 /**
465 * Retrieves a list of contacts for the authenticated user.
466 * (contacts.listContacts)
467 *
468 * @param array $optParams Optional parameters.
469 * @return Analytify_Google_Service_Mirror_ContactsListResponse
470 */
471 public function listContacts($optParams = array())
472 {
473 $params = array();
474 $params = array_merge($params, $optParams);
475 return $this->call('list', array($params), "Analytify_Google_Service_Mirror_ContactsListResponse");
476 }
477 /**
478 * Updates a contact in place. This method supports patch semantics.
479 * (contacts.patch)
480 *
481 * @param string $id
482 * The ID of the contact.
483 * @param Analytify_Google_Contact $postBody
484 * @param array $optParams Optional parameters.
485 * @return Analytify_Google_Service_Mirror_Contact
486 */
487 public function patch($id, Analytify_Google_Service_Mirror_Contact $postBody, $optParams = array())
488 {
489 $params = array('id' => $id, 'postBody' => $postBody);
490 $params = array_merge($params, $optParams);
491 return $this->call('patch', array($params), "Analytify_Google_Service_Mirror_Contact");
492 }
493 /**
494 * Updates a contact in place. (contacts.update)
495 *
496 * @param string $id
497 * The ID of the contact.
498 * @param Analytify_Google_Contact $postBody
499 * @param array $optParams Optional parameters.
500 * @return Analytify_Google_Service_Mirror_Contact
501 */
502 public function update($id, Analytify_Google_Service_Mirror_Contact $postBody, $optParams = array())
503 {
504 $params = array('id' => $id, 'postBody' => $postBody);
505 $params = array_merge($params, $optParams);
506 return $this->call('update', array($params), "Analytify_Google_Service_Mirror_Contact");
507 }
508 }
509
510 /**
511 * The "locations" collection of methods.
512 * Typical usage is:
513 * <code>
514 * $mirrorService = new Analytify_Google_Service_Mirror(...);
515 * $locations = $mirrorService->locations;
516 * </code>
517 */
518 class Analytify_Google_Service_Mirror_Locations_Resource extends Analytify_Google_Service_Resource
519 {
520
521 /**
522 * Gets a single location by ID. (locations.get)
523 *
524 * @param string $id
525 * The ID of the location or latest for the last known location.
526 * @param array $optParams Optional parameters.
527 * @return Analytify_Google_Service_Mirror_Location
528 */
529 public function get($id, $optParams = array())
530 {
531 $params = array('id' => $id);
532 $params = array_merge($params, $optParams);
533 return $this->call('get', array($params), "Analytify_Google_Service_Mirror_Location");
534 }
535 /**
536 * Retrieves a list of locations for the user. (locations.listLocations)
537 *
538 * @param array $optParams Optional parameters.
539 * @return Analytify_Google_Service_Mirror_LocationsListResponse
540 */
541 public function listLocations($optParams = array())
542 {
543 $params = array();
544 $params = array_merge($params, $optParams);
545 return $this->call('list', array($params), "Analytify_Google_Service_Mirror_LocationsListResponse");
546 }
547 }
548
549 /**
550 * The "settings" collection of methods.
551 * Typical usage is:
552 * <code>
553 * $mirrorService = new Analytify_Google_Service_Mirror(...);
554 * $settings = $mirrorService->settings;
555 * </code>
556 */
557 class Analytify_Google_Service_Mirror_Settings_Resource extends Analytify_Google_Service_Resource
558 {
559
560 /**
561 * Gets a single setting by ID. (settings.get)
562 *
563 * @param string $id
564 * The ID of the setting. The following IDs are valid:
565 - locale - The key to the user’s
566 * language/locale (BCP 47 identifier) that Glassware should use to render localized content.
567 * @param array $optParams Optional parameters.
568 * @return Analytify_Google_Service_Mirror_Setting
569 */
570 public function get($id, $optParams = array())
571 {
572 $params = array('id' => $id);
573 $params = array_merge($params, $optParams);
574 return $this->call('get', array($params), "Analytify_Google_Service_Mirror_Setting");
575 }
576 }
577
578 /**
579 * The "subscriptions" collection of methods.
580 * Typical usage is:
581 * <code>
582 * $mirrorService = new Analytify_Google_Service_Mirror(...);
583 * $subscriptions = $mirrorService->subscriptions;
584 * </code>
585 */
586 class Analytify_Google_Service_Mirror_Subscriptions_Resource extends Analytify_Google_Service_Resource
587 {
588
589 /**
590 * Deletes a subscription. (subscriptions.delete)
591 *
592 * @param string $id
593 * The ID of the subscription.
594 * @param array $optParams Optional parameters.
595 */
596 public function delete($id, $optParams = array())
597 {
598 $params = array('id' => $id);
599 $params = array_merge($params, $optParams);
600 return $this->call('delete', array($params));
601 }
602 /**
603 * Creates a new subscription. (subscriptions.insert)
604 *
605 * @param Analytify_Google_Subscription $postBody
606 * @param array $optParams Optional parameters.
607 * @return Analytify_Google_Service_Mirror_Subscription
608 */
609 public function insert(Analytify_Google_Service_Mirror_Subscription $postBody, $optParams = array())
610 {
611 $params = array('postBody' => $postBody);
612 $params = array_merge($params, $optParams);
613 return $this->call('insert', array($params), "Analytify_Google_Service_Mirror_Subscription");
614 }
615 /**
616 * Retrieves a list of subscriptions for the authenticated user and service.
617 * (subscriptions.listSubscriptions)
618 *
619 * @param array $optParams Optional parameters.
620 * @return Analytify_Google_Service_Mirror_SubscriptionsListResponse
621 */
622 public function listSubscriptions($optParams = array())
623 {
624 $params = array();
625 $params = array_merge($params, $optParams);
626 return $this->call('list', array($params), "Analytify_Google_Service_Mirror_SubscriptionsListResponse");
627 }
628 /**
629 * Updates an existing subscription in place. (subscriptions.update)
630 *
631 * @param string $id
632 * The ID of the subscription.
633 * @param Analytify_Google_Subscription $postBody
634 * @param array $optParams Optional parameters.
635 * @return Analytify_Google_Service_Mirror_Subscription
636 */
637 public function update($id, Analytify_Google_Service_Mirror_Subscription $postBody, $optParams = array())
638 {
639 $params = array('id' => $id, 'postBody' => $postBody);
640 $params = array_merge($params, $optParams);
641 return $this->call('update', array($params), "Analytify_Google_Service_Mirror_Subscription");
642 }
643 }
644
645 /**
646 * The "timeline" collection of methods.
647 * Typical usage is:
648 * <code>
649 * $mirrorService = new Analytify_Google_Service_Mirror(...);
650 * $timeline = $mirrorService->timeline;
651 * </code>
652 */
653 class Analytify_Google_Service_Mirror_Timeline_Resource extends Analytify_Google_Service_Resource
654 {
655
656 /**
657 * Deletes a timeline item. (timeline.delete)
658 *
659 * @param string $id
660 * The ID of the timeline item.
661 * @param array $optParams Optional parameters.
662 */
663 public function delete($id, $optParams = array())
664 {
665 $params = array('id' => $id);
666 $params = array_merge($params, $optParams);
667 return $this->call('delete', array($params));
668 }
669 /**
670 * Gets a single timeline item by ID. (timeline.get)
671 *
672 * @param string $id
673 * The ID of the timeline item.
674 * @param array $optParams Optional parameters.
675 * @return Analytify_Google_Service_Mirror_TimelineItem
676 */
677 public function get($id, $optParams = array())
678 {
679 $params = array('id' => $id);
680 $params = array_merge($params, $optParams);
681 return $this->call('get', array($params), "Analytify_Google_Service_Mirror_TimelineItem");
682 }
683 /**
684 * Inserts a new item into the timeline. (timeline.insert)
685 *
686 * @param Analytify_Google_TimelineItem $postBody
687 * @param array $optParams Optional parameters.
688 * @return Analytify_Google_Service_Mirror_TimelineItem
689 */
690 public function insert(Analytify_Google_Service_Mirror_TimelineItem $postBody, $optParams = array())
691 {
692 $params = array('postBody' => $postBody);
693 $params = array_merge($params, $optParams);
694 return $this->call('insert', array($params), "Analytify_Google_Service_Mirror_TimelineItem");
695 }
696 /**
697 * Retrieves a list of timeline items for the authenticated user.
698 * (timeline.listTimeline)
699 *
700 * @param array $optParams Optional parameters.
701 *
702 * @opt_param string orderBy
703 * Controls the order in which timeline items are returned.
704 * @opt_param bool includeDeleted
705 * If true, tombstone records for deleted items will be returned.
706 * @opt_param string maxResults
707 * The maximum number of items to include in the response, used for paging.
708 * @opt_param string pageToken
709 * Token for the page of results to return.
710 * @opt_param string sourceItemId
711 * If provided, only items with the given sourceItemId will be returned.
712 * @opt_param bool pinnedOnly
713 * If true, only pinned items will be returned.
714 * @opt_param string bundleId
715 * If provided, only items with the given bundleId will be returned.
716 * @return Analytify_Google_Service_Mirror_TimelineListResponse
717 */
718 public function listTimeline($optParams = array())
719 {
720 $params = array();
721 $params = array_merge($params, $optParams);
722 return $this->call('list', array($params), "Analytify_Google_Service_Mirror_TimelineListResponse");
723 }
724 /**
725 * Updates a timeline item in place. This method supports patch semantics.
726 * (timeline.patch)
727 *
728 * @param string $id
729 * The ID of the timeline item.
730 * @param Analytify_Google_TimelineItem $postBody
731 * @param array $optParams Optional parameters.
732 * @return Analytify_Google_Service_Mirror_TimelineItem
733 */
734 public function patch($id, Analytify_Google_Service_Mirror_TimelineItem $postBody, $optParams = array())
735 {
736 $params = array('id' => $id, 'postBody' => $postBody);
737 $params = array_merge($params, $optParams);
738 return $this->call('patch', array($params), "Analytify_Google_Service_Mirror_TimelineItem");
739 }
740 /**
741 * Updates a timeline item in place. (timeline.update)
742 *
743 * @param string $id
744 * The ID of the timeline item.
745 * @param Analytify_Google_TimelineItem $postBody
746 * @param array $optParams Optional parameters.
747 * @return Analytify_Google_Service_Mirror_TimelineItem
748 */
749 public function update($id, Analytify_Google_Service_Mirror_TimelineItem $postBody, $optParams = array())
750 {
751 $params = array('id' => $id, 'postBody' => $postBody);
752 $params = array_merge($params, $optParams);
753 return $this->call('update', array($params), "Analytify_Google_Service_Mirror_TimelineItem");
754 }
755 }
756
757 /**
758 * The "attachments" collection of methods.
759 * Typical usage is:
760 * <code>
761 * $mirrorService = new Analytify_Google_Service_Mirror(...);
762 * $attachments = $mirrorService->attachments;
763 * </code>
764 */
765 class Analytify_Google_Service_Mirror_TimelineAttachments_Resource extends Analytify_Google_Service_Resource
766 {
767
768 /**
769 * Deletes an attachment from a timeline item. (attachments.delete)
770 *
771 * @param string $itemId
772 * The ID of the timeline item the attachment belongs to.
773 * @param string $attachmentId
774 * The ID of the attachment.
775 * @param array $optParams Optional parameters.
776 */
777 public function delete($itemId, $attachmentId, $optParams = array())
778 {
779 $params = array('itemId' => $itemId, 'attachmentId' => $attachmentId);
780 $params = array_merge($params, $optParams);
781 return $this->call('delete', array($params));
782 }
783 /**
784 * Retrieves an attachment on a timeline item by item ID and attachment ID.
785 * (attachments.get)
786 *
787 * @param string $itemId
788 * The ID of the timeline item the attachment belongs to.
789 * @param string $attachmentId
790 * The ID of the attachment.
791 * @param array $optParams Optional parameters.
792 * @return Analytify_Google_Service_Mirror_Attachment
793 */
794 public function get($itemId, $attachmentId, $optParams = array())
795 {
796 $params = array('itemId' => $itemId, 'attachmentId' => $attachmentId);
797 $params = array_merge($params, $optParams);
798 return $this->call('get', array($params), "Analytify_Google_Service_Mirror_Attachment");
799 }
800 /**
801 * Adds a new attachment to a timeline item. (attachments.insert)
802 *
803 * @param string $itemId
804 * The ID of the timeline item the attachment belongs to.
805 * @param array $optParams Optional parameters.
806 * @return Analytify_Google_Service_Mirror_Attachment
807 */
808 public function insert($itemId, $optParams = array())
809 {
810 $params = array('itemId' => $itemId);
811 $params = array_merge($params, $optParams);
812 return $this->call('insert', array($params), "Analytify_Google_Service_Mirror_Attachment");
813 }
814 /**
815 * Returns a list of attachments for a timeline item.
816 * (attachments.listTimelineAttachments)
817 *
818 * @param string $itemId
819 * The ID of the timeline item whose attachments should be listed.
820 * @param array $optParams Optional parameters.
821 * @return Analytify_Google_Service_Mirror_AttachmentsListResponse
822 */
823 public function listTimelineAttachments($itemId, $optParams = array())
824 {
825 $params = array('itemId' => $itemId);
826 $params = array_merge($params, $optParams);
827 return $this->call('list', array($params), "Analytify_Google_Service_Mirror_AttachmentsListResponse");
828 }
829 }
830
831
832
833
834 class Analytify_Google_Service_Mirror_Account extends Analytify_Google_Collection
835 {
836 protected $authTokensType = 'Analytify_Google_Service_Mirror_AuthToken';
837 protected $authTokensDataType = 'array';
838 public $features;
839 public $password;
840 protected $userDataType = 'Analytify_Google_Service_Mirror_UserData';
841 protected $userDataDataType = 'array';
842
843 public function setAuthTokens($authTokens)
844 {
845 $this->authTokens = $authTokens;
846 }
847
848 public function getAuthTokens()
849 {
850 return $this->authTokens;
851 }
852
853 public function setFeatures($features)
854 {
855 $this->features = $features;
856 }
857
858 public function getFeatures()
859 {
860 return $this->features;
861 }
862
863 public function setPassword($password)
864 {
865 $this->password = $password;
866 }
867
868 public function getPassword()
869 {
870 return $this->password;
871 }
872
873 public function setUserData($userData)
874 {
875 $this->userData = $userData;
876 }
877
878 public function getUserData()
879 {
880 return $this->userData;
881 }
882 }
883
884 class Analytify_Google_Service_Mirror_Attachment extends Analytify_Google_Model
885 {
886 public $contentType;
887 public $contentUrl;
888 public $id;
889 public $isProcessingContent;
890
891 public function setContentType($contentType)
892 {
893 $this->contentType = $contentType;
894 }
895
896 public function getContentType()
897 {
898 return $this->contentType;
899 }
900
901 public function setContentUrl($contentUrl)
902 {
903 $this->contentUrl = $contentUrl;
904 }
905
906 public function getContentUrl()
907 {
908 return $this->contentUrl;
909 }
910
911 public function setId($id)
912 {
913 $this->id = $id;
914 }
915
916 public function getId()
917 {
918 return $this->id;
919 }
920
921 public function setIsProcessingContent($isProcessingContent)
922 {
923 $this->isProcessingContent = $isProcessingContent;
924 }
925
926 public function getIsProcessingContent()
927 {
928 return $this->isProcessingContent;
929 }
930 }
931
932 class Analytify_Google_Service_Mirror_AttachmentsListResponse extends Analytify_Google_Collection
933 {
934 protected $itemsType = 'Analytify_Google_Service_Mirror_Attachment';
935 protected $itemsDataType = 'array';
936 public $kind;
937
938 public function setItems($items)
939 {
940 $this->items = $items;
941 }
942
943 public function getItems()
944 {
945 return $this->items;
946 }
947
948 public function setKind($kind)
949 {
950 $this->kind = $kind;
951 }
952
953 public function getKind()
954 {
955 return $this->kind;
956 }
957 }
958
959 class Analytify_Google_Service_Mirror_AuthToken extends Analytify_Google_Model
960 {
961 public $authToken;
962 public $type;
963
964 public function setAuthToken($authToken)
965 {
966 $this->authToken = $authToken;
967 }
968
969 public function getAuthToken()
970 {
971 return $this->authToken;
972 }
973
974 public function setType($type)
975 {
976 $this->type = $type;
977 }
978
979 public function getType()
980 {
981 return $this->type;
982 }
983 }
984
985 class Analytify_Google_Service_Mirror_Command extends Analytify_Google_Model
986 {
987 public $type;
988
989 public function setType($type)
990 {
991 $this->type = $type;
992 }
993
994 public function getType()
995 {
996 return $this->type;
997 }
998 }
999
1000 class Analytify_Google_Service_Mirror_Contact extends Analytify_Google_Collection
1001 {
1002 protected $acceptCommandsType = 'Analytify_Google_Service_Mirror_Command';
1003 protected $acceptCommandsDataType = 'array';
1004 public $acceptTypes;
1005 public $displayName;
1006 public $id;
1007 public $imageUrls;
1008 public $kind;
1009 public $phoneNumber;
1010 public $priority;
1011 public $sharingFeatures;
1012 public $source;
1013 public $speakableName;
1014 public $type;
1015
1016 public function setAcceptCommands($acceptCommands)
1017 {
1018 $this->acceptCommands = $acceptCommands;
1019 }
1020
1021 public function getAcceptCommands()
1022 {
1023 return $this->acceptCommands;
1024 }
1025
1026 public function setAcceptTypes($acceptTypes)
1027 {
1028 $this->acceptTypes = $acceptTypes;
1029 }
1030
1031 public function getAcceptTypes()
1032 {
1033 return $this->acceptTypes;
1034 }
1035
1036 public function setDisplayName($displayName)
1037 {
1038 $this->displayName = $displayName;
1039 }
1040
1041 public function getDisplayName()
1042 {
1043 return $this->displayName;
1044 }
1045
1046 public function setId($id)
1047 {
1048 $this->id = $id;
1049 }
1050
1051 public function getId()
1052 {
1053 return $this->id;
1054 }
1055
1056 public function setImageUrls($imageUrls)
1057 {
1058 $this->imageUrls = $imageUrls;
1059 }
1060
1061 public function getImageUrls()
1062 {
1063 return $this->imageUrls;
1064 }
1065
1066 public function setKind($kind)
1067 {
1068 $this->kind = $kind;
1069 }
1070
1071 public function getKind()
1072 {
1073 return $this->kind;
1074 }
1075
1076 public function setPhoneNumber($phoneNumber)
1077 {
1078 $this->phoneNumber = $phoneNumber;
1079 }
1080
1081 public function getPhoneNumber()
1082 {
1083 return $this->phoneNumber;
1084 }
1085
1086 public function setPriority($priority)
1087 {
1088 $this->priority = $priority;
1089 }
1090
1091 public function getPriority()
1092 {
1093 return $this->priority;
1094 }
1095
1096 public function setSharingFeatures($sharingFeatures)
1097 {
1098 $this->sharingFeatures = $sharingFeatures;
1099 }
1100
1101 public function getSharingFeatures()
1102 {
1103 return $this->sharingFeatures;
1104 }
1105
1106 public function setSource($source)
1107 {
1108 $this->source = $source;
1109 }
1110
1111 public function getSource()
1112 {
1113 return $this->source;
1114 }
1115
1116 public function setSpeakableName($speakableName)
1117 {
1118 $this->speakableName = $speakableName;
1119 }
1120
1121 public function getSpeakableName()
1122 {
1123 return $this->speakableName;
1124 }
1125
1126 public function setType($type)
1127 {
1128 $this->type = $type;
1129 }
1130
1131 public function getType()
1132 {
1133 return $this->type;
1134 }
1135 }
1136
1137 class Analytify_Google_Service_Mirror_ContactsListResponse extends Analytify_Google_Collection
1138 {
1139 protected $itemsType = 'Analytify_Google_Service_Mirror_Contact';
1140 protected $itemsDataType = 'array';
1141 public $kind;
1142
1143 public function setItems($items)
1144 {
1145 $this->items = $items;
1146 }
1147
1148 public function getItems()
1149 {
1150 return $this->items;
1151 }
1152
1153 public function setKind($kind)
1154 {
1155 $this->kind = $kind;
1156 }
1157
1158 public function getKind()
1159 {
1160 return $this->kind;
1161 }
1162 }
1163
1164 class Analytify_Google_Service_Mirror_Location extends Analytify_Google_Model
1165 {
1166 public $accuracy;
1167 public $address;
1168 public $displayName;
1169 public $id;
1170 public $kind;
1171 public $latitude;
1172 public $longitude;
1173 public $timestamp;
1174
1175 public function setAccuracy($accuracy)
1176 {
1177 $this->accuracy = $accuracy;
1178 }
1179
1180 public function getAccuracy()
1181 {
1182 return $this->accuracy;
1183 }
1184
1185 public function setAddress($address)
1186 {
1187 $this->address = $address;
1188 }
1189
1190 public function getAddress()
1191 {
1192 return $this->address;
1193 }
1194
1195 public function setDisplayName($displayName)
1196 {
1197 $this->displayName = $displayName;
1198 }
1199
1200 public function getDisplayName()
1201 {
1202 return $this->displayName;
1203 }
1204
1205 public function setId($id)
1206 {
1207 $this->id = $id;
1208 }
1209
1210 public function getId()
1211 {
1212 return $this->id;
1213 }
1214
1215 public function setKind($kind)
1216 {
1217 $this->kind = $kind;
1218 }
1219
1220 public function getKind()
1221 {
1222 return $this->kind;
1223 }
1224
1225 public function setLatitude($latitude)
1226 {
1227 $this->latitude = $latitude;
1228 }
1229
1230 public function getLatitude()
1231 {
1232 return $this->latitude;
1233 }
1234
1235 public function setLongitude($longitude)
1236 {
1237 $this->longitude = $longitude;
1238 }
1239
1240 public function getLongitude()
1241 {
1242 return $this->longitude;
1243 }
1244
1245 public function setTimestamp($timestamp)
1246 {
1247 $this->timestamp = $timestamp;
1248 }
1249
1250 public function getTimestamp()
1251 {
1252 return $this->timestamp;
1253 }
1254 }
1255
1256 class Analytify_Google_Service_Mirror_LocationsListResponse extends Analytify_Google_Collection
1257 {
1258 protected $itemsType = 'Analytify_Google_Service_Mirror_Location';
1259 protected $itemsDataType = 'array';
1260 public $kind;
1261
1262 public function setItems($items)
1263 {
1264 $this->items = $items;
1265 }
1266
1267 public function getItems()
1268 {
1269 return $this->items;
1270 }
1271
1272 public function setKind($kind)
1273 {
1274 $this->kind = $kind;
1275 }
1276
1277 public function getKind()
1278 {
1279 return $this->kind;
1280 }
1281 }
1282
1283 class Analytify_Google_Service_Mirror_MenuItem extends Analytify_Google_Collection
1284 {
1285 public $action;
1286 public $id;
1287 public $payload;
1288 public $removeWhenSelected;
1289 protected $valuesType = 'Analytify_Google_Service_Mirror_MenuValue';
1290 protected $valuesDataType = 'array';
1291
1292 public function setAction($action)
1293 {
1294 $this->action = $action;
1295 }
1296
1297 public function getAction()
1298 {
1299 return $this->action;
1300 }
1301
1302 public function setId($id)
1303 {
1304 $this->id = $id;
1305 }
1306
1307 public function getId()
1308 {
1309 return $this->id;
1310 }
1311
1312 public function setPayload($payload)
1313 {
1314 $this->payload = $payload;
1315 }
1316
1317 public function getPayload()
1318 {
1319 return $this->payload;
1320 }
1321
1322 public function setRemoveWhenSelected($removeWhenSelected)
1323 {
1324 $this->removeWhenSelected = $removeWhenSelected;
1325 }
1326
1327 public function getRemoveWhenSelected()
1328 {
1329 return $this->removeWhenSelected;
1330 }
1331
1332 public function setValues($values)
1333 {
1334 $this->values = $values;
1335 }
1336
1337 public function getValues()
1338 {
1339 return $this->values;
1340 }
1341 }
1342
1343 class Analytify_Google_Service_Mirror_MenuValue extends Analytify_Google_Model
1344 {
1345 public $displayName;
1346 public $iconUrl;
1347 public $state;
1348
1349 public function setDisplayName($displayName)
1350 {
1351 $this->displayName = $displayName;
1352 }
1353
1354 public function getDisplayName()
1355 {
1356 return $this->displayName;
1357 }
1358
1359 public function setIconUrl($iconUrl)
1360 {
1361 $this->iconUrl = $iconUrl;
1362 }
1363
1364 public function getIconUrl()
1365 {
1366 return $this->iconUrl;
1367 }
1368
1369 public function setState($state)
1370 {
1371 $this->state = $state;
1372 }
1373
1374 public function getState()
1375 {
1376 return $this->state;
1377 }
1378 }
1379
1380 class Analytify_Google_Service_Mirror_Notification extends Analytify_Google_Collection
1381 {
1382 public $collection;
1383 public $itemId;
1384 public $operation;
1385 protected $userActionsType = 'Analytify_Google_Service_Mirror_UserAction';
1386 protected $userActionsDataType = 'array';
1387 public $userToken;
1388 public $verifyToken;
1389
1390 public function setCollection($collection)
1391 {
1392 $this->collection = $collection;
1393 }
1394
1395 public function getCollection()
1396 {
1397 return $this->collection;
1398 }
1399
1400 public function setItemId($itemId)
1401 {
1402 $this->itemId = $itemId;
1403 }
1404
1405 public function getItemId()
1406 {
1407 return $this->itemId;
1408 }
1409
1410 public function setOperation($operation)
1411 {
1412 $this->operation = $operation;
1413 }
1414
1415 public function getOperation()
1416 {
1417 return $this->operation;
1418 }
1419
1420 public function setUserActions($userActions)
1421 {
1422 $this->userActions = $userActions;
1423 }
1424
1425 public function getUserActions()
1426 {
1427 return $this->userActions;
1428 }
1429
1430 public function setUserToken($userToken)
1431 {
1432 $this->userToken = $userToken;
1433 }
1434
1435 public function getUserToken()
1436 {
1437 return $this->userToken;
1438 }
1439
1440 public function setVerifyToken($verifyToken)
1441 {
1442 $this->verifyToken = $verifyToken;
1443 }
1444
1445 public function getVerifyToken()
1446 {
1447 return $this->verifyToken;
1448 }
1449 }
1450
1451 class Analytify_Google_Service_Mirror_NotificationConfig extends Analytify_Google_Model
1452 {
1453 public $deliveryTime;
1454 public $level;
1455
1456 public function setDeliveryTime($deliveryTime)
1457 {
1458 $this->deliveryTime = $deliveryTime;
1459 }
1460
1461 public function getDeliveryTime()
1462 {
1463 return $this->deliveryTime;
1464 }
1465
1466 public function setLevel($level)
1467 {
1468 $this->level = $level;
1469 }
1470
1471 public function getLevel()
1472 {
1473 return $this->level;
1474 }
1475 }
1476
1477 class Analytify_Google_Service_Mirror_Setting extends Analytify_Google_Model
1478 {
1479 public $id;
1480 public $kind;
1481 public $value;
1482
1483 public function setId($id)
1484 {
1485 $this->id = $id;
1486 }
1487
1488 public function getId()
1489 {
1490 return $this->id;
1491 }
1492
1493 public function setKind($kind)
1494 {
1495 $this->kind = $kind;
1496 }
1497
1498 public function getKind()
1499 {
1500 return $this->kind;
1501 }
1502
1503 public function setValue($value)
1504 {
1505 $this->value = $value;
1506 }
1507
1508 public function getValue()
1509 {
1510 return $this->value;
1511 }
1512 }
1513
1514 class Analytify_Google_Service_Mirror_Subscription extends Analytify_Google_Collection
1515 {
1516 public $callbackUrl;
1517 public $collection;
1518 public $id;
1519 public $kind;
1520 protected $notificationType = 'Analytify_Google_Service_Mirror_Notification';
1521 protected $notificationDataType = '';
1522 public $operation;
1523 public $updated;
1524 public $userToken;
1525 public $verifyToken;
1526
1527 public function setCallbackUrl($callbackUrl)
1528 {
1529 $this->callbackUrl = $callbackUrl;
1530 }
1531
1532 public function getCallbackUrl()
1533 {
1534 return $this->callbackUrl;
1535 }
1536
1537 public function setCollection($collection)
1538 {
1539 $this->collection = $collection;
1540 }
1541
1542 public function getCollection()
1543 {
1544 return $this->collection;
1545 }
1546
1547 public function setId($id)
1548 {
1549 $this->id = $id;
1550 }
1551
1552 public function getId()
1553 {
1554 return $this->id;
1555 }
1556
1557 public function setKind($kind)
1558 {
1559 $this->kind = $kind;
1560 }
1561
1562 public function getKind()
1563 {
1564 return $this->kind;
1565 }
1566
1567 public function setNotification(Analytify_Google_Service_Mirror_Notification $notification)
1568 {
1569 $this->notification = $notification;
1570 }
1571
1572 public function getNotification()
1573 {
1574 return $this->notification;
1575 }
1576
1577 public function setOperation($operation)
1578 {
1579 $this->operation = $operation;
1580 }
1581
1582 public function getOperation()
1583 {
1584 return $this->operation;
1585 }
1586
1587 public function setUpdated($updated)
1588 {
1589 $this->updated = $updated;
1590 }
1591
1592 public function getUpdated()
1593 {
1594 return $this->updated;
1595 }
1596
1597 public function setUserToken($userToken)
1598 {
1599 $this->userToken = $userToken;
1600 }
1601
1602 public function getUserToken()
1603 {
1604 return $this->userToken;
1605 }
1606
1607 public function setVerifyToken($verifyToken)
1608 {
1609 $this->verifyToken = $verifyToken;
1610 }
1611
1612 public function getVerifyToken()
1613 {
1614 return $this->verifyToken;
1615 }
1616 }
1617
1618 class Analytify_Google_Service_Mirror_SubscriptionsListResponse extends Analytify_Google_Collection
1619 {
1620 protected $itemsType = 'Analytify_Google_Service_Mirror_Subscription';
1621 protected $itemsDataType = 'array';
1622 public $kind;
1623
1624 public function setItems($items)
1625 {
1626 $this->items = $items;
1627 }
1628
1629 public function getItems()
1630 {
1631 return $this->items;
1632 }
1633
1634 public function setKind($kind)
1635 {
1636 $this->kind = $kind;
1637 }
1638
1639 public function getKind()
1640 {
1641 return $this->kind;
1642 }
1643 }
1644
1645 class Analytify_Google_Service_Mirror_TimelineItem extends Analytify_Google_Collection
1646 {
1647 protected $attachmentsType = 'Analytify_Google_Service_Mirror_Attachment';
1648 protected $attachmentsDataType = 'array';
1649 public $bundleId;
1650 public $canonicalUrl;
1651 public $created;
1652 protected $creatorType = 'Analytify_Google_Service_Mirror_Contact';
1653 protected $creatorDataType = '';
1654 public $displayTime;
1655 public $etag;
1656 public $html;
1657 public $id;
1658 public $inReplyTo;
1659 public $isBundleCover;
1660 public $isDeleted;
1661 public $isPinned;
1662 public $kind;
1663 protected $locationType = 'Analytify_Google_Service_Mirror_Location';
1664 protected $locationDataType = '';
1665 protected $menuItemsType = 'Analytify_Google_Service_Mirror_MenuItem';
1666 protected $menuItemsDataType = 'array';
1667 protected $notificationType = 'Analytify_Google_Service_Mirror_NotificationConfig';
1668 protected $notificationDataType = '';
1669 public $pinScore;
1670 protected $recipientsType = 'Analytify_Google_Service_Mirror_Contact';
1671 protected $recipientsDataType = 'array';
1672 public $selfLink;
1673 public $sourceItemId;
1674 public $speakableText;
1675 public $speakableType;
1676 public $text;
1677 public $title;
1678 public $updated;
1679
1680 public function setAttachments($attachments)
1681 {
1682 $this->attachments = $attachments;
1683 }
1684
1685 public function getAttachments()
1686 {
1687 return $this->attachments;
1688 }
1689
1690 public function setBundleId($bundleId)
1691 {
1692 $this->bundleId = $bundleId;
1693 }
1694
1695 public function getBundleId()
1696 {
1697 return $this->bundleId;
1698 }
1699
1700 public function setCanonicalUrl($canonicalUrl)
1701 {
1702 $this->canonicalUrl = $canonicalUrl;
1703 }
1704
1705 public function getCanonicalUrl()
1706 {
1707 return $this->canonicalUrl;
1708 }
1709
1710 public function setCreated($created)
1711 {
1712 $this->created = $created;
1713 }
1714
1715 public function getCreated()
1716 {
1717 return $this->created;
1718 }
1719
1720 public function setCreator(Analytify_Google_Service_Mirror_Contact $creator)
1721 {
1722 $this->creator = $creator;
1723 }
1724
1725 public function getCreator()
1726 {
1727 return $this->creator;
1728 }
1729
1730 public function setDisplayTime($displayTime)
1731 {
1732 $this->displayTime = $displayTime;
1733 }
1734
1735 public function getDisplayTime()
1736 {
1737 return $this->displayTime;
1738 }
1739
1740 public function setEtag($etag)
1741 {
1742 $this->etag = $etag;
1743 }
1744
1745 public function getEtag()
1746 {
1747 return $this->etag;
1748 }
1749
1750 public function setHtml($html)
1751 {
1752 $this->html = $html;
1753 }
1754
1755 public function getHtml()
1756 {
1757 return $this->html;
1758 }
1759
1760 public function setId($id)
1761 {
1762 $this->id = $id;
1763 }
1764
1765 public function getId()
1766 {
1767 return $this->id;
1768 }
1769
1770 public function setInReplyTo($inReplyTo)
1771 {
1772 $this->inReplyTo = $inReplyTo;
1773 }
1774
1775 public function getInReplyTo()
1776 {
1777 return $this->inReplyTo;
1778 }
1779
1780 public function setIsBundleCover($isBundleCover)
1781 {
1782 $this->isBundleCover = $isBundleCover;
1783 }
1784
1785 public function getIsBundleCover()
1786 {
1787 return $this->isBundleCover;
1788 }
1789
1790 public function setIsDeleted($isDeleted)
1791 {
1792 $this->isDeleted = $isDeleted;
1793 }
1794
1795 public function getIsDeleted()
1796 {
1797 return $this->isDeleted;
1798 }
1799
1800 public function setIsPinned($isPinned)
1801 {
1802 $this->isPinned = $isPinned;
1803 }
1804
1805 public function getIsPinned()
1806 {
1807 return $this->isPinned;
1808 }
1809
1810 public function setKind($kind)
1811 {
1812 $this->kind = $kind;
1813 }
1814
1815 public function getKind()
1816 {
1817 return $this->kind;
1818 }
1819
1820 public function setLocation(Analytify_Google_Service_Mirror_Location $location)
1821 {
1822 $this->location = $location;
1823 }
1824
1825 public function getLocation()
1826 {
1827 return $this->location;
1828 }
1829
1830 public function setMenuItems($menuItems)
1831 {
1832 $this->menuItems = $menuItems;
1833 }
1834
1835 public function getMenuItems()
1836 {
1837 return $this->menuItems;
1838 }
1839
1840 public function setNotification(Analytify_Google_Service_Mirror_NotificationConfig $notification)
1841 {
1842 $this->notification = $notification;
1843 }
1844
1845 public function getNotification()
1846 {
1847 return $this->notification;
1848 }
1849
1850 public function setPinScore($pinScore)
1851 {
1852 $this->pinScore = $pinScore;
1853 }
1854
1855 public function getPinScore()
1856 {
1857 return $this->pinScore;
1858 }
1859
1860 public function setRecipients($recipients)
1861 {
1862 $this->recipients = $recipients;
1863 }
1864
1865 public function getRecipients()
1866 {
1867 return $this->recipients;
1868 }
1869
1870 public function setSelfLink($selfLink)
1871 {
1872 $this->selfLink = $selfLink;
1873 }
1874
1875 public function getSelfLink()
1876 {
1877 return $this->selfLink;
1878 }
1879
1880 public function setSourceItemId($sourceItemId)
1881 {
1882 $this->sourceItemId = $sourceItemId;
1883 }
1884
1885 public function getSourceItemId()
1886 {
1887 return $this->sourceItemId;
1888 }
1889
1890 public function setSpeakableText($speakableText)
1891 {
1892 $this->speakableText = $speakableText;
1893 }
1894
1895 public function getSpeakableText()
1896 {
1897 return $this->speakableText;
1898 }
1899
1900 public function setSpeakableType($speakableType)
1901 {
1902 $this->speakableType = $speakableType;
1903 }
1904
1905 public function getSpeakableType()
1906 {
1907 return $this->speakableType;
1908 }
1909
1910 public function setText($text)
1911 {
1912 $this->text = $text;
1913 }
1914
1915 public function getText()
1916 {
1917 return $this->text;
1918 }
1919
1920 public function setTitle($title)
1921 {
1922 $this->title = $title;
1923 }
1924
1925 public function getTitle()
1926 {
1927 return $this->title;
1928 }
1929
1930 public function setUpdated($updated)
1931 {
1932 $this->updated = $updated;
1933 }
1934
1935 public function getUpdated()
1936 {
1937 return $this->updated;
1938 }
1939 }
1940
1941 class Analytify_Google_Service_Mirror_TimelineListResponse extends Analytify_Google_Collection
1942 {
1943 protected $itemsType = 'Analytify_Google_Service_Mirror_TimelineItem';
1944 protected $itemsDataType = 'array';
1945 public $kind;
1946 public $nextPageToken;
1947
1948 public function setItems($items)
1949 {
1950 $this->items = $items;
1951 }
1952
1953 public function getItems()
1954 {
1955 return $this->items;
1956 }
1957
1958 public function setKind($kind)
1959 {
1960 $this->kind = $kind;
1961 }
1962
1963 public function getKind()
1964 {
1965 return $this->kind;
1966 }
1967
1968 public function setNextPageToken($nextPageToken)
1969 {
1970 $this->nextPageToken = $nextPageToken;
1971 }
1972
1973 public function getNextPageToken()
1974 {
1975 return $this->nextPageToken;
1976 }
1977 }
1978
1979 class Analytify_Google_Service_Mirror_UserAction extends Analytify_Google_Model
1980 {
1981 public $payload;
1982 public $type;
1983
1984 public function setPayload($payload)
1985 {
1986 $this->payload = $payload;
1987 }
1988
1989 public function getPayload()
1990 {
1991 return $this->payload;
1992 }
1993
1994 public function setType($type)
1995 {
1996 $this->type = $type;
1997 }
1998
1999 public function getType()
2000 {
2001 return $this->type;
2002 }
2003 }
2004
2005 class Analytify_Google_Service_Mirror_UserData extends Analytify_Google_Model
2006 {
2007 public $key;
2008 public $value;
2009
2010 public function setKey($key)
2011 {
2012 $this->key = $key;
2013 }
2014
2015 public function getKey()
2016 {
2017 return $this->key;
2018 }
2019
2020 public function setValue($value)
2021 {
2022 $this->value = $value;
2023 }
2024
2025 public function getValue()
2026 {
2027 return $this->value;
2028 }
2029 }
2030