PageRenderTime 127ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/lib/google/src/Google/Service/Plus.php

http://github.com/moodle/moodle
PHP | 3692 lines | 3278 code | 186 blank | 228 comment | 0 complexity | 6c07ee4cdba036e459a4588f771e812a MD5 | raw file
Possible License(s): MIT, AGPL-3.0, MPL-2.0-no-copyleft-exception, LGPL-3.0, GPL-3.0, Apache-2.0, LGPL-2.1, BSD-3-Clause
  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. * Service definition for Plus (v1).
  19. *
  20. * <p>
  21. * The Google+ API enables developers to build on top of the Google+ platform.</p>
  22. *
  23. * <p>
  24. * For more information about this service, see the API
  25. * <a href="https://developers.google.com/+/api/" target="_blank">Documentation</a>
  26. * </p>
  27. *
  28. * @author Google, Inc.
  29. */
  30. class Google_Service_Plus extends Google_Service
  31. {
  32. /** Know your basic profile info and list of people in your circles.. */
  33. const PLUS_LOGIN =
  34. "https://www.googleapis.com/auth/plus.login";
  35. /** Know who you are on Google. */
  36. const PLUS_ME =
  37. "https://www.googleapis.com/auth/plus.me";
  38. /** View your email address. */
  39. const USERINFO_EMAIL =
  40. "https://www.googleapis.com/auth/userinfo.email";
  41. /** View your basic profile info. */
  42. const USERINFO_PROFILE =
  43. "https://www.googleapis.com/auth/userinfo.profile";
  44. public $activities;
  45. public $comments;
  46. public $moments;
  47. public $people;
  48. /**
  49. * Constructs the internal representation of the Plus service.
  50. *
  51. * @param Google_Client $client
  52. */
  53. public function __construct(Google_Client $client)
  54. {
  55. parent::__construct($client);
  56. $this->rootUrl = 'https://www.googleapis.com/';
  57. $this->servicePath = 'plus/v1/';
  58. $this->version = 'v1';
  59. $this->serviceName = 'plus';
  60. $this->activities = new Google_Service_Plus_Activities_Resource(
  61. $this,
  62. $this->serviceName,
  63. 'activities',
  64. array(
  65. 'methods' => array(
  66. 'get' => array(
  67. 'path' => 'activities/{activityId}',
  68. 'httpMethod' => 'GET',
  69. 'parameters' => array(
  70. 'activityId' => array(
  71. 'location' => 'path',
  72. 'type' => 'string',
  73. 'required' => true,
  74. ),
  75. ),
  76. ),'list' => array(
  77. 'path' => 'people/{userId}/activities/{collection}',
  78. 'httpMethod' => 'GET',
  79. 'parameters' => array(
  80. 'userId' => array(
  81. 'location' => 'path',
  82. 'type' => 'string',
  83. 'required' => true,
  84. ),
  85. 'collection' => array(
  86. 'location' => 'path',
  87. 'type' => 'string',
  88. 'required' => true,
  89. ),
  90. 'pageToken' => array(
  91. 'location' => 'query',
  92. 'type' => 'string',
  93. ),
  94. 'maxResults' => array(
  95. 'location' => 'query',
  96. 'type' => 'integer',
  97. ),
  98. ),
  99. ),'search' => array(
  100. 'path' => 'activities',
  101. 'httpMethod' => 'GET',
  102. 'parameters' => array(
  103. 'query' => array(
  104. 'location' => 'query',
  105. 'type' => 'string',
  106. 'required' => true,
  107. ),
  108. 'orderBy' => array(
  109. 'location' => 'query',
  110. 'type' => 'string',
  111. ),
  112. 'pageToken' => array(
  113. 'location' => 'query',
  114. 'type' => 'string',
  115. ),
  116. 'maxResults' => array(
  117. 'location' => 'query',
  118. 'type' => 'integer',
  119. ),
  120. 'language' => array(
  121. 'location' => 'query',
  122. 'type' => 'string',
  123. ),
  124. ),
  125. ),
  126. )
  127. )
  128. );
  129. $this->comments = new Google_Service_Plus_Comments_Resource(
  130. $this,
  131. $this->serviceName,
  132. 'comments',
  133. array(
  134. 'methods' => array(
  135. 'get' => array(
  136. 'path' => 'comments/{commentId}',
  137. 'httpMethod' => 'GET',
  138. 'parameters' => array(
  139. 'commentId' => array(
  140. 'location' => 'path',
  141. 'type' => 'string',
  142. 'required' => true,
  143. ),
  144. ),
  145. ),'list' => array(
  146. 'path' => 'activities/{activityId}/comments',
  147. 'httpMethod' => 'GET',
  148. 'parameters' => array(
  149. 'activityId' => array(
  150. 'location' => 'path',
  151. 'type' => 'string',
  152. 'required' => true,
  153. ),
  154. 'pageToken' => array(
  155. 'location' => 'query',
  156. 'type' => 'string',
  157. ),
  158. 'sortOrder' => array(
  159. 'location' => 'query',
  160. 'type' => 'string',
  161. ),
  162. 'maxResults' => array(
  163. 'location' => 'query',
  164. 'type' => 'integer',
  165. ),
  166. ),
  167. ),
  168. )
  169. )
  170. );
  171. $this->moments = new Google_Service_Plus_Moments_Resource(
  172. $this,
  173. $this->serviceName,
  174. 'moments',
  175. array(
  176. 'methods' => array(
  177. 'insert' => array(
  178. 'path' => 'people/{userId}/moments/{collection}',
  179. 'httpMethod' => 'POST',
  180. 'parameters' => array(
  181. 'userId' => array(
  182. 'location' => 'path',
  183. 'type' => 'string',
  184. 'required' => true,
  185. ),
  186. 'collection' => array(
  187. 'location' => 'path',
  188. 'type' => 'string',
  189. 'required' => true,
  190. ),
  191. 'debug' => array(
  192. 'location' => 'query',
  193. 'type' => 'boolean',
  194. ),
  195. ),
  196. ),'list' => array(
  197. 'path' => 'people/{userId}/moments/{collection}',
  198. 'httpMethod' => 'GET',
  199. 'parameters' => array(
  200. 'userId' => array(
  201. 'location' => 'path',
  202. 'type' => 'string',
  203. 'required' => true,
  204. ),
  205. 'collection' => array(
  206. 'location' => 'path',
  207. 'type' => 'string',
  208. 'required' => true,
  209. ),
  210. 'maxResults' => array(
  211. 'location' => 'query',
  212. 'type' => 'integer',
  213. ),
  214. 'pageToken' => array(
  215. 'location' => 'query',
  216. 'type' => 'string',
  217. ),
  218. 'targetUrl' => array(
  219. 'location' => 'query',
  220. 'type' => 'string',
  221. ),
  222. 'type' => array(
  223. 'location' => 'query',
  224. 'type' => 'string',
  225. ),
  226. ),
  227. ),
  228. )
  229. )
  230. );
  231. $this->people = new Google_Service_Plus_People_Resource(
  232. $this,
  233. $this->serviceName,
  234. 'people',
  235. array(
  236. 'methods' => array(
  237. 'get' => array(
  238. 'path' => 'people/{userId}',
  239. 'httpMethod' => 'GET',
  240. 'parameters' => array(
  241. 'userId' => array(
  242. 'location' => 'path',
  243. 'type' => 'string',
  244. 'required' => true,
  245. ),
  246. ),
  247. ),'list' => array(
  248. 'path' => 'people/{userId}/people/{collection}',
  249. 'httpMethod' => 'GET',
  250. 'parameters' => array(
  251. 'userId' => array(
  252. 'location' => 'path',
  253. 'type' => 'string',
  254. 'required' => true,
  255. ),
  256. 'collection' => array(
  257. 'location' => 'path',
  258. 'type' => 'string',
  259. 'required' => true,
  260. ),
  261. 'orderBy' => array(
  262. 'location' => 'query',
  263. 'type' => 'string',
  264. ),
  265. 'pageToken' => array(
  266. 'location' => 'query',
  267. 'type' => 'string',
  268. ),
  269. 'maxResults' => array(
  270. 'location' => 'query',
  271. 'type' => 'integer',
  272. ),
  273. ),
  274. ),'listByActivity' => array(
  275. 'path' => 'activities/{activityId}/people/{collection}',
  276. 'httpMethod' => 'GET',
  277. 'parameters' => array(
  278. 'activityId' => array(
  279. 'location' => 'path',
  280. 'type' => 'string',
  281. 'required' => true,
  282. ),
  283. 'collection' => array(
  284. 'location' => 'path',
  285. 'type' => 'string',
  286. 'required' => true,
  287. ),
  288. 'pageToken' => array(
  289. 'location' => 'query',
  290. 'type' => 'string',
  291. ),
  292. 'maxResults' => array(
  293. 'location' => 'query',
  294. 'type' => 'integer',
  295. ),
  296. ),
  297. ),'search' => array(
  298. 'path' => 'people',
  299. 'httpMethod' => 'GET',
  300. 'parameters' => array(
  301. 'query' => array(
  302. 'location' => 'query',
  303. 'type' => 'string',
  304. 'required' => true,
  305. ),
  306. 'pageToken' => array(
  307. 'location' => 'query',
  308. 'type' => 'string',
  309. ),
  310. 'maxResults' => array(
  311. 'location' => 'query',
  312. 'type' => 'integer',
  313. ),
  314. 'language' => array(
  315. 'location' => 'query',
  316. 'type' => 'string',
  317. ),
  318. ),
  319. ),
  320. )
  321. )
  322. );
  323. }
  324. }
  325. /**
  326. * The "activities" collection of methods.
  327. * Typical usage is:
  328. * <code>
  329. * $plusService = new Google_Service_Plus(...);
  330. * $activities = $plusService->activities;
  331. * </code>
  332. */
  333. class Google_Service_Plus_Activities_Resource extends Google_Service_Resource
  334. {
  335. /**
  336. * Get an activity. (activities.get)
  337. *
  338. * @param string $activityId The ID of the activity to get.
  339. * @param array $optParams Optional parameters.
  340. * @return Google_Service_Plus_Activity
  341. */
  342. public function get($activityId, $optParams = array())
  343. {
  344. $params = array('activityId' => $activityId);
  345. $params = array_merge($params, $optParams);
  346. return $this->call('get', array($params), "Google_Service_Plus_Activity");
  347. }
  348. /**
  349. * List all of the activities in the specified collection for a particular user.
  350. * (activities.listActivities)
  351. *
  352. * @param string $userId The ID of the user to get activities for. The special
  353. * value "me" can be used to indicate the authenticated user.
  354. * @param string $collection The collection of activities to list.
  355. * @param array $optParams Optional parameters.
  356. *
  357. * @opt_param string pageToken The continuation token, which is used to page
  358. * through large result sets. To get the next page of results, set this
  359. * parameter to the value of "nextPageToken" from the previous response.
  360. * @opt_param string maxResults The maximum number of activities to include in
  361. * the response, which is used for paging. For any response, the actual number
  362. * returned might be less than the specified maxResults.
  363. * @return Google_Service_Plus_ActivityFeed
  364. */
  365. public function listActivities($userId, $collection, $optParams = array())
  366. {
  367. $params = array('userId' => $userId, 'collection' => $collection);
  368. $params = array_merge($params, $optParams);
  369. return $this->call('list', array($params), "Google_Service_Plus_ActivityFeed");
  370. }
  371. /**
  372. * Search public activities. (activities.search)
  373. *
  374. * @param string $query Full-text search query string.
  375. * @param array $optParams Optional parameters.
  376. *
  377. * @opt_param string orderBy Specifies how to order search results.
  378. * @opt_param string pageToken The continuation token, which is used to page
  379. * through large result sets. To get the next page of results, set this
  380. * parameter to the value of "nextPageToken" from the previous response. This
  381. * token can be of any length.
  382. * @opt_param string maxResults The maximum number of activities to include in
  383. * the response, which is used for paging. For any response, the actual number
  384. * returned might be less than the specified maxResults.
  385. * @opt_param string language Specify the preferred language to search with. See
  386. * search language codes for available values.
  387. * @return Google_Service_Plus_ActivityFeed
  388. */
  389. public function search($query, $optParams = array())
  390. {
  391. $params = array('query' => $query);
  392. $params = array_merge($params, $optParams);
  393. return $this->call('search', array($params), "Google_Service_Plus_ActivityFeed");
  394. }
  395. }
  396. /**
  397. * The "comments" collection of methods.
  398. * Typical usage is:
  399. * <code>
  400. * $plusService = new Google_Service_Plus(...);
  401. * $comments = $plusService->comments;
  402. * </code>
  403. */
  404. class Google_Service_Plus_Comments_Resource extends Google_Service_Resource
  405. {
  406. /**
  407. * Get a comment. (comments.get)
  408. *
  409. * @param string $commentId The ID of the comment to get.
  410. * @param array $optParams Optional parameters.
  411. * @return Google_Service_Plus_Comment
  412. */
  413. public function get($commentId, $optParams = array())
  414. {
  415. $params = array('commentId' => $commentId);
  416. $params = array_merge($params, $optParams);
  417. return $this->call('get', array($params), "Google_Service_Plus_Comment");
  418. }
  419. /**
  420. * List all of the comments for an activity. (comments.listComments)
  421. *
  422. * @param string $activityId The ID of the activity to get comments for.
  423. * @param array $optParams Optional parameters.
  424. *
  425. * @opt_param string pageToken The continuation token, which is used to page
  426. * through large result sets. To get the next page of results, set this
  427. * parameter to the value of "nextPageToken" from the previous response.
  428. * @opt_param string sortOrder The order in which to sort the list of comments.
  429. * @opt_param string maxResults The maximum number of comments to include in the
  430. * response, which is used for paging. For any response, the actual number
  431. * returned might be less than the specified maxResults.
  432. * @return Google_Service_Plus_CommentFeed
  433. */
  434. public function listComments($activityId, $optParams = array())
  435. {
  436. $params = array('activityId' => $activityId);
  437. $params = array_merge($params, $optParams);
  438. return $this->call('list', array($params), "Google_Service_Plus_CommentFeed");
  439. }
  440. }
  441. /**
  442. * The "moments" collection of methods.
  443. * Typical usage is:
  444. * <code>
  445. * $plusService = new Google_Service_Plus(...);
  446. * $moments = $plusService->moments;
  447. * </code>
  448. */
  449. class Google_Service_Plus_Moments_Resource extends Google_Service_Resource
  450. {
  451. /**
  452. * Record a moment representing a user's action such as making a purchase or
  453. * commenting on a blog. (moments.insert)
  454. *
  455. * @param string $userId The ID of the user to record actions for. The only
  456. * valid values are "me" and the ID of the authenticated user.
  457. * @param string $collection The collection to which to write moments.
  458. * @param Google_Moment $postBody
  459. * @param array $optParams Optional parameters.
  460. *
  461. * @opt_param bool debug Return the moment as written. Should be used only for
  462. * debugging.
  463. * @return Google_Service_Plus_Moment
  464. */
  465. public function insert($userId, $collection, Google_Service_Plus_Moment $postBody, $optParams = array())
  466. {
  467. $params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
  468. $params = array_merge($params, $optParams);
  469. return $this->call('insert', array($params), "Google_Service_Plus_Moment");
  470. }
  471. /**
  472. * List all of the moments for a particular user. (moments.listMoments)
  473. *
  474. * @param string $userId The ID of the user to get moments for. The special
  475. * value "me" can be used to indicate the authenticated user.
  476. * @param string $collection The collection of moments to list.
  477. * @param array $optParams Optional parameters.
  478. *
  479. * @opt_param string maxResults The maximum number of moments to include in the
  480. * response, which is used for paging. For any response, the actual number
  481. * returned might be less than the specified maxResults.
  482. * @opt_param string pageToken The continuation token, which is used to page
  483. * through large result sets. To get the next page of results, set this
  484. * parameter to the value of "nextPageToken" from the previous response.
  485. * @opt_param string targetUrl Only moments containing this targetUrl will be
  486. * returned.
  487. * @opt_param string type Only moments of this type will be returned.
  488. * @return Google_Service_Plus_MomentsFeed
  489. */
  490. public function listMoments($userId, $collection, $optParams = array())
  491. {
  492. $params = array('userId' => $userId, 'collection' => $collection);
  493. $params = array_merge($params, $optParams);
  494. return $this->call('list', array($params), "Google_Service_Plus_MomentsFeed");
  495. }
  496. }
  497. /**
  498. * The "people" collection of methods.
  499. * Typical usage is:
  500. * <code>
  501. * $plusService = new Google_Service_Plus(...);
  502. * $people = $plusService->people;
  503. * </code>
  504. */
  505. class Google_Service_Plus_People_Resource extends Google_Service_Resource
  506. {
  507. /**
  508. * Get a person's profile. If your app uses scope
  509. * https://www.googleapis.com/auth/plus.login, this method is guaranteed to
  510. * return ageRange and language. (people.get)
  511. *
  512. * @param string $userId The ID of the person to get the profile for. The
  513. * special value "me" can be used to indicate the authenticated user.
  514. * @param array $optParams Optional parameters.
  515. * @return Google_Service_Plus_Person
  516. */
  517. public function get($userId, $optParams = array())
  518. {
  519. $params = array('userId' => $userId);
  520. $params = array_merge($params, $optParams);
  521. return $this->call('get', array($params), "Google_Service_Plus_Person");
  522. }
  523. /**
  524. * List all of the people in the specified collection. (people.listPeople)
  525. *
  526. * @param string $userId Get the collection of people for the person identified.
  527. * Use "me" to indicate the authenticated user.
  528. * @param string $collection The collection of people to list.
  529. * @param array $optParams Optional parameters.
  530. *
  531. * @opt_param string orderBy The order to return people in.
  532. * @opt_param string pageToken The continuation token, which is used to page
  533. * through large result sets. To get the next page of results, set this
  534. * parameter to the value of "nextPageToken" from the previous response.
  535. * @opt_param string maxResults The maximum number of people to include in the
  536. * response, which is used for paging. For any response, the actual number
  537. * returned might be less than the specified maxResults.
  538. * @return Google_Service_Plus_PeopleFeed
  539. */
  540. public function listPeople($userId, $collection, $optParams = array())
  541. {
  542. $params = array('userId' => $userId, 'collection' => $collection);
  543. $params = array_merge($params, $optParams);
  544. return $this->call('list', array($params), "Google_Service_Plus_PeopleFeed");
  545. }
  546. /**
  547. * List all of the people in the specified collection for a particular activity.
  548. * (people.listByActivity)
  549. *
  550. * @param string $activityId The ID of the activity to get the list of people
  551. * for.
  552. * @param string $collection The collection of people to list.
  553. * @param array $optParams Optional parameters.
  554. *
  555. * @opt_param string pageToken The continuation token, which is used to page
  556. * through large result sets. To get the next page of results, set this
  557. * parameter to the value of "nextPageToken" from the previous response.
  558. * @opt_param string maxResults The maximum number of people to include in the
  559. * response, which is used for paging. For any response, the actual number
  560. * returned might be less than the specified maxResults.
  561. * @return Google_Service_Plus_PeopleFeed
  562. */
  563. public function listByActivity($activityId, $collection, $optParams = array())
  564. {
  565. $params = array('activityId' => $activityId, 'collection' => $collection);
  566. $params = array_merge($params, $optParams);
  567. return $this->call('listByActivity', array($params), "Google_Service_Plus_PeopleFeed");
  568. }
  569. /**
  570. * Search all public profiles. (people.search)
  571. *
  572. * @param string $query Specify a query string for full text search of public
  573. * text in all profiles.
  574. * @param array $optParams Optional parameters.
  575. *
  576. * @opt_param string pageToken The continuation token, which is used to page
  577. * through large result sets. To get the next page of results, set this
  578. * parameter to the value of "nextPageToken" from the previous response. This
  579. * token can be of any length.
  580. * @opt_param string maxResults The maximum number of people to include in the
  581. * response, which is used for paging. For any response, the actual number
  582. * returned might be less than the specified maxResults.
  583. * @opt_param string language Specify the preferred language to search with. See
  584. * search language codes for available values.
  585. * @return Google_Service_Plus_PeopleFeed
  586. */
  587. public function search($query, $optParams = array())
  588. {
  589. $params = array('query' => $query);
  590. $params = array_merge($params, $optParams);
  591. return $this->call('search', array($params), "Google_Service_Plus_PeopleFeed");
  592. }
  593. }
  594. class Google_Service_Plus_Acl extends Google_Collection
  595. {
  596. protected $collection_key = 'items';
  597. protected $internal_gapi_mappings = array(
  598. );
  599. public $description;
  600. protected $itemsType = 'Google_Service_Plus_PlusAclentryResource';
  601. protected $itemsDataType = 'array';
  602. public $kind;
  603. public function setDescription($description)
  604. {
  605. $this->description = $description;
  606. }
  607. public function getDescription()
  608. {
  609. return $this->description;
  610. }
  611. public function setItems($items)
  612. {
  613. $this->items = $items;
  614. }
  615. public function getItems()
  616. {
  617. return $this->items;
  618. }
  619. public function setKind($kind)
  620. {
  621. $this->kind = $kind;
  622. }
  623. public function getKind()
  624. {
  625. return $this->kind;
  626. }
  627. }
  628. class Google_Service_Plus_Activity extends Google_Model
  629. {
  630. protected $internal_gapi_mappings = array(
  631. );
  632. protected $accessType = 'Google_Service_Plus_Acl';
  633. protected $accessDataType = '';
  634. protected $actorType = 'Google_Service_Plus_ActivityActor';
  635. protected $actorDataType = '';
  636. public $address;
  637. public $annotation;
  638. public $crosspostSource;
  639. public $etag;
  640. public $geocode;
  641. public $id;
  642. public $kind;
  643. protected $locationType = 'Google_Service_Plus_Place';
  644. protected $locationDataType = '';
  645. protected $objectType = 'Google_Service_Plus_ActivityObject';
  646. protected $objectDataType = '';
  647. public $placeId;
  648. public $placeName;
  649. protected $providerType = 'Google_Service_Plus_ActivityProvider';
  650. protected $providerDataType = '';
  651. public $published;
  652. public $radius;
  653. public $title;
  654. public $updated;
  655. public $url;
  656. public $verb;
  657. public function setAccess(Google_Service_Plus_Acl $access)
  658. {
  659. $this->access = $access;
  660. }
  661. public function getAccess()
  662. {
  663. return $this->access;
  664. }
  665. public function setActor(Google_Service_Plus_ActivityActor $actor)
  666. {
  667. $this->actor = $actor;
  668. }
  669. public function getActor()
  670. {
  671. return $this->actor;
  672. }
  673. public function setAddress($address)
  674. {
  675. $this->address = $address;
  676. }
  677. public function getAddress()
  678. {
  679. return $this->address;
  680. }
  681. public function setAnnotation($annotation)
  682. {
  683. $this->annotation = $annotation;
  684. }
  685. public function getAnnotation()
  686. {
  687. return $this->annotation;
  688. }
  689. public function setCrosspostSource($crosspostSource)
  690. {
  691. $this->crosspostSource = $crosspostSource;
  692. }
  693. public function getCrosspostSource()
  694. {
  695. return $this->crosspostSource;
  696. }
  697. public function setEtag($etag)
  698. {
  699. $this->etag = $etag;
  700. }
  701. public function getEtag()
  702. {
  703. return $this->etag;
  704. }
  705. public function setGeocode($geocode)
  706. {
  707. $this->geocode = $geocode;
  708. }
  709. public function getGeocode()
  710. {
  711. return $this->geocode;
  712. }
  713. public function setId($id)
  714. {
  715. $this->id = $id;
  716. }
  717. public function getId()
  718. {
  719. return $this->id;
  720. }
  721. public function setKind($kind)
  722. {
  723. $this->kind = $kind;
  724. }
  725. public function getKind()
  726. {
  727. return $this->kind;
  728. }
  729. public function setLocation(Google_Service_Plus_Place $location)
  730. {
  731. $this->location = $location;
  732. }
  733. public function getLocation()
  734. {
  735. return $this->location;
  736. }
  737. public function setObject(Google_Service_Plus_ActivityObject $object)
  738. {
  739. $this->object = $object;
  740. }
  741. public function getObject()
  742. {
  743. return $this->object;
  744. }
  745. public function setPlaceId($placeId)
  746. {
  747. $this->placeId = $placeId;
  748. }
  749. public function getPlaceId()
  750. {
  751. return $this->placeId;
  752. }
  753. public function setPlaceName($placeName)
  754. {
  755. $this->placeName = $placeName;
  756. }
  757. public function getPlaceName()
  758. {
  759. return $this->placeName;
  760. }
  761. public function setProvider(Google_Service_Plus_ActivityProvider $provider)
  762. {
  763. $this->provider = $provider;
  764. }
  765. public function getProvider()
  766. {
  767. return $this->provider;
  768. }
  769. public function setPublished($published)
  770. {
  771. $this->published = $published;
  772. }
  773. public function getPublished()
  774. {
  775. return $this->published;
  776. }
  777. public function setRadius($radius)
  778. {
  779. $this->radius = $radius;
  780. }
  781. public function getRadius()
  782. {
  783. return $this->radius;
  784. }
  785. public function setTitle($title)
  786. {
  787. $this->title = $title;
  788. }
  789. public function getTitle()
  790. {
  791. return $this->title;
  792. }
  793. public function setUpdated($updated)
  794. {
  795. $this->updated = $updated;
  796. }
  797. public function getUpdated()
  798. {
  799. return $this->updated;
  800. }
  801. public function setUrl($url)
  802. {
  803. $this->url = $url;
  804. }
  805. public function getUrl()
  806. {
  807. return $this->url;
  808. }
  809. public function setVerb($verb)
  810. {
  811. $this->verb = $verb;
  812. }
  813. public function getVerb()
  814. {
  815. return $this->verb;
  816. }
  817. }
  818. class Google_Service_Plus_ActivityActor extends Google_Model
  819. {
  820. protected $internal_gapi_mappings = array(
  821. );
  822. protected $clientSpecificActorInfoType = 'Google_Service_Plus_ActivityActorClientSpecificActorInfo';
  823. protected $clientSpecificActorInfoDataType = '';
  824. public $displayName;
  825. public $id;
  826. protected $imageType = 'Google_Service_Plus_ActivityActorImage';
  827. protected $imageDataType = '';
  828. protected $nameType = 'Google_Service_Plus_ActivityActorName';
  829. protected $nameDataType = '';
  830. public $url;
  831. protected $verificationType = 'Google_Service_Plus_ActivityActorVerification';
  832. protected $verificationDataType = '';
  833. public function setClientSpecificActorInfo(Google_Service_Plus_ActivityActorClientSpecificActorInfo $clientSpecificActorInfo)
  834. {
  835. $this->clientSpecificActorInfo = $clientSpecificActorInfo;
  836. }
  837. public function getClientSpecificActorInfo()
  838. {
  839. return $this->clientSpecificActorInfo;
  840. }
  841. public function setDisplayName($displayName)
  842. {
  843. $this->displayName = $displayName;
  844. }
  845. public function getDisplayName()
  846. {
  847. return $this->displayName;
  848. }
  849. public function setId($id)
  850. {
  851. $this->id = $id;
  852. }
  853. public function getId()
  854. {
  855. return $this->id;
  856. }
  857. public function setImage(Google_Service_Plus_ActivityActorImage $image)
  858. {
  859. $this->image = $image;
  860. }
  861. public function getImage()
  862. {
  863. return $this->image;
  864. }
  865. public function setName(Google_Service_Plus_ActivityActorName $name)
  866. {
  867. $this->name = $name;
  868. }
  869. public function getName()
  870. {
  871. return $this->name;
  872. }
  873. public function setUrl($url)
  874. {
  875. $this->url = $url;
  876. }
  877. public function getUrl()
  878. {
  879. return $this->url;
  880. }
  881. public function setVerification(Google_Service_Plus_ActivityActorVerification $verification)
  882. {
  883. $this->verification = $verification;
  884. }
  885. public function getVerification()
  886. {
  887. return $this->verification;
  888. }
  889. }
  890. class Google_Service_Plus_ActivityActorClientSpecificActorInfo extends Google_Model
  891. {
  892. protected $internal_gapi_mappings = array(
  893. );
  894. protected $youtubeActorInfoType = 'Google_Service_Plus_ActivityActorClientSpecificActorInfoYoutubeActorInfo';
  895. protected $youtubeActorInfoDataType = '';
  896. public function setYoutubeActorInfo(Google_Service_Plus_ActivityActorClientSpecificActorInfoYoutubeActorInfo $youtubeActorInfo)
  897. {
  898. $this->youtubeActorInfo = $youtubeActorInfo;
  899. }
  900. public function getYoutubeActorInfo()
  901. {
  902. return $this->youtubeActorInfo;
  903. }
  904. }
  905. class Google_Service_Plus_ActivityActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
  906. {
  907. protected $internal_gapi_mappings = array(
  908. );
  909. public $channelId;
  910. public function setChannelId($channelId)
  911. {
  912. $this->channelId = $channelId;
  913. }
  914. public function getChannelId()
  915. {
  916. return $this->channelId;
  917. }
  918. }
  919. class Google_Service_Plus_ActivityActorImage extends Google_Model
  920. {
  921. protected $internal_gapi_mappings = array(
  922. );
  923. public $url;
  924. public function setUrl($url)
  925. {
  926. $this->url = $url;
  927. }
  928. public function getUrl()
  929. {
  930. return $this->url;
  931. }
  932. }
  933. class Google_Service_Plus_ActivityActorName extends Google_Model
  934. {
  935. protected $internal_gapi_mappings = array(
  936. );
  937. public $familyName;
  938. public $givenName;
  939. public function setFamilyName($familyName)
  940. {
  941. $this->familyName = $familyName;
  942. }
  943. public function getFamilyName()
  944. {
  945. return $this->familyName;
  946. }
  947. public function setGivenName($givenName)
  948. {
  949. $this->givenName = $givenName;
  950. }
  951. public function getGivenName()
  952. {
  953. return $this->givenName;
  954. }
  955. }
  956. class Google_Service_Plus_ActivityActorVerification extends Google_Model
  957. {
  958. protected $internal_gapi_mappings = array(
  959. );
  960. public $adHocVerified;
  961. public function setAdHocVerified($adHocVerified)
  962. {
  963. $this->adHocVerified = $adHocVerified;
  964. }
  965. public function getAdHocVerified()
  966. {
  967. return $this->adHocVerified;
  968. }
  969. }
  970. class Google_Service_Plus_ActivityFeed extends Google_Collection
  971. {
  972. protected $collection_key = 'items';
  973. protected $internal_gapi_mappings = array(
  974. );
  975. public $etag;
  976. public $id;
  977. protected $itemsType = 'Google_Service_Plus_Activity';
  978. protected $itemsDataType = 'array';
  979. public $kind;
  980. public $nextLink;
  981. public $nextPageToken;
  982. public $selfLink;
  983. public $title;
  984. public $updated;
  985. public function setEtag($etag)
  986. {
  987. $this->etag = $etag;
  988. }
  989. public function getEtag()
  990. {
  991. return $this->etag;
  992. }
  993. public function setId($id)
  994. {
  995. $this->id = $id;
  996. }
  997. public function getId()
  998. {
  999. return $this->id;
  1000. }
  1001. public function setItems($items)
  1002. {
  1003. $this->items = $items;
  1004. }
  1005. public function getItems()
  1006. {
  1007. return $this->items;
  1008. }
  1009. public function setKind($kind)
  1010. {
  1011. $this->kind = $kind;
  1012. }
  1013. public function getKind()
  1014. {
  1015. return $this->kind;
  1016. }
  1017. public function setNextLink($nextLink)
  1018. {
  1019. $this->nextLink = $nextLink;
  1020. }
  1021. public function getNextLink()
  1022. {
  1023. return $this->nextLink;
  1024. }
  1025. public function setNextPageToken($nextPageToken)
  1026. {
  1027. $this->nextPageToken = $nextPageToken;
  1028. }
  1029. public function getNextPageToken()
  1030. {
  1031. return $this->nextPageToken;
  1032. }
  1033. public function setSelfLink($selfLink)
  1034. {
  1035. $this->selfLink = $selfLink;
  1036. }
  1037. public function getSelfLink()
  1038. {
  1039. return $this->selfLink;
  1040. }
  1041. public function setTitle($title)
  1042. {
  1043. $this->title = $title;
  1044. }
  1045. public function getTitle()
  1046. {
  1047. return $this->title;
  1048. }
  1049. public function setUpdated($updated)
  1050. {
  1051. $this->updated = $updated;
  1052. }
  1053. public function getUpdated()
  1054. {
  1055. return $this->updated;
  1056. }
  1057. }
  1058. class Google_Service_Plus_ActivityObject extends Google_Collection
  1059. {
  1060. protected $collection_key = 'attachments';
  1061. protected $internal_gapi_mappings = array(
  1062. );
  1063. protected $actorType = 'Google_Service_Plus_ActivityObjectActor';
  1064. protected $actorDataType = '';
  1065. protected $attachmentsType = 'Google_Service_Plus_ActivityObjectAttachments';
  1066. protected $attachmentsDataType = 'array';
  1067. public $content;
  1068. public $id;
  1069. public $objectType;
  1070. public $originalContent;
  1071. protected $plusonersType = 'Google_Service_Plus_ActivityObjectPlusoners';
  1072. protected $plusonersDataType = '';
  1073. protected $repliesType = 'Google_Service_Plus_ActivityObjectReplies';
  1074. protected $repliesDataType = '';
  1075. protected $resharersType = 'Google_Service_Plus_ActivityObjectResharers';
  1076. protected $resharersDataType = '';
  1077. public $url;
  1078. public function setActor(Google_Service_Plus_ActivityObjectActor $actor)
  1079. {
  1080. $this->actor = $actor;
  1081. }
  1082. public function getActor()
  1083. {
  1084. return $this->actor;
  1085. }
  1086. public function setAttachments($attachments)
  1087. {
  1088. $this->attachments = $attachments;
  1089. }
  1090. public function getAttachments()
  1091. {
  1092. return $this->attachments;
  1093. }
  1094. public function setContent($content)
  1095. {
  1096. $this->content = $content;
  1097. }
  1098. public function getContent()
  1099. {
  1100. return $this->content;
  1101. }
  1102. public function setId($id)
  1103. {
  1104. $this->id = $id;
  1105. }
  1106. public function getId()
  1107. {
  1108. return $this->id;
  1109. }
  1110. public function setObjectType($objectType)
  1111. {
  1112. $this->objectType = $objectType;
  1113. }
  1114. public function getObjectType()
  1115. {
  1116. return $this->objectType;
  1117. }
  1118. public function setOriginalContent($originalContent)
  1119. {
  1120. $this->originalContent = $originalContent;
  1121. }
  1122. public function getOriginalContent()
  1123. {
  1124. return $this->originalContent;
  1125. }
  1126. public function setPlusoners(Google_Service_Plus_ActivityObjectPlusoners $plusoners)
  1127. {
  1128. $this->plusoners = $plusoners;
  1129. }
  1130. public function getPlusoners()
  1131. {
  1132. return $this->plusoners;
  1133. }
  1134. public function setReplies(Google_Service_Plus_ActivityObjectReplies $replies)
  1135. {
  1136. $this->replies = $replies;
  1137. }
  1138. public function getReplies()
  1139. {
  1140. return $this->replies;
  1141. }
  1142. public function setResharers(Google_Service_Plus_ActivityObjectResharers $resharers)
  1143. {
  1144. $this->resharers = $resharers;
  1145. }
  1146. public function getResharers()
  1147. {
  1148. return $this->resharers;
  1149. }
  1150. public function setUrl($url)
  1151. {
  1152. $this->url = $url;
  1153. }
  1154. public function getUrl()
  1155. {
  1156. return $this->url;
  1157. }
  1158. }
  1159. class Google_Service_Plus_ActivityObjectActor extends Google_Model
  1160. {
  1161. protected $internal_gapi_mappings = array(
  1162. );
  1163. protected $clientSpecificActorInfoType = 'Google_Service_Plus_ActivityObjectActorClientSpecificActorInfo';
  1164. protected $clientSpecificActorInfoDataType = '';
  1165. public $displayName;
  1166. public $id;
  1167. protected $imageType = 'Google_Service_Plus_ActivityObjectActorImage';
  1168. protected $imageDataType = '';
  1169. public $url;
  1170. protected $verificationType = 'Google_Service_Plus_ActivityObjectActorVerification';
  1171. protected $verificationDataType = '';
  1172. public function setClientSpecificActorInfo(Google_Service_Plus_ActivityObjectActorClientSpecificActorInfo $clientSpecificActorInfo)
  1173. {
  1174. $this->clientSpecificActorInfo = $clientSpecificActorInfo;
  1175. }
  1176. public function getClientSpecificActorInfo()
  1177. {
  1178. return $this->clientSpecificActorInfo;
  1179. }
  1180. public function setDisplayName($displayName)
  1181. {
  1182. $this->displayName = $displayName;
  1183. }
  1184. public function getDisplayName()
  1185. {
  1186. return $this->displayName;
  1187. }
  1188. public function setId($id)
  1189. {
  1190. $this->id = $id;
  1191. }
  1192. public function getId()
  1193. {
  1194. return $this->id;
  1195. }
  1196. public function setImage(Google_Service_Plus_ActivityObjectActorImage $image)
  1197. {
  1198. $this->image = $image;
  1199. }
  1200. public function getImage()
  1201. {
  1202. return $this->image;
  1203. }
  1204. public function setUrl($url)
  1205. {
  1206. $this->url = $url;
  1207. }
  1208. public function getUrl()
  1209. {
  1210. return $this->url;
  1211. }
  1212. public function setVerification(Google_Service_Plus_ActivityObjectActorVerification $verification)
  1213. {
  1214. $this->verification = $verification;
  1215. }
  1216. public function getVerification()
  1217. {
  1218. return $this->verification;
  1219. }
  1220. }
  1221. class Google_Service_Plus_ActivityObjectActorClientSpecificActorInfo extends Google_Model
  1222. {
  1223. protected $internal_gapi_mappings = array(
  1224. );
  1225. protected $youtubeActorInfoType = 'Google_Service_Plus_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo';
  1226. protected $youtubeActorInfoDataType = '';
  1227. public function setYoutubeActorInfo(Google_Service_Plus_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo $youtubeActorInfo)
  1228. {
  1229. $this->youtubeActorInfo = $youtubeActorInfo;
  1230. }
  1231. public function getYoutubeActorInfo()
  1232. {
  1233. return $this->youtubeActorInfo;
  1234. }
  1235. }
  1236. class Google_Service_Plus_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
  1237. {
  1238. protected $internal_gapi_mappings = array(
  1239. );
  1240. public $channelId;
  1241. public function setChannelId($channelId)
  1242. {
  1243. $this->channelId = $channelId;
  1244. }
  1245. public function getChannelId()
  1246. {
  1247. return $this->channelId;
  1248. }
  1249. }
  1250. class Google_Service_Plus_ActivityObjectActorImage extends Google_Model
  1251. {
  1252. protected $internal_gapi_mappings = array(
  1253. );
  1254. public $url;
  1255. public function setUrl($url)
  1256. {
  1257. $this->url = $url;
  1258. }
  1259. public function getUrl()
  1260. {
  1261. return $this->url;
  1262. }
  1263. }
  1264. class Google_Service_Plus_ActivityObjectActorVerification extends Google_Model
  1265. {
  1266. protected $internal_gapi_mappings = array(
  1267. );
  1268. public $adHocVerified;
  1269. public function setAdHocVerified($adHocVerified)
  1270. {
  1271. $this->adHocVerified = $adHocVerified;
  1272. }
  1273. public function getAdHocVerified()
  1274. {
  1275. return $this->adHocVerified;
  1276. }
  1277. }
  1278. class Google_Service_Plus_ActivityObjectAttachments extends Google_Collection
  1279. {
  1280. protected $collection_key = 'thumbnails';
  1281. protected $internal_gapi_mappings = array(
  1282. );
  1283. public $content;
  1284. public $displayName;
  1285. protected $embedType = 'Google_Service_Plus_ActivityObjectAttachmentsEmbed';
  1286. protected $embedDataType = '';
  1287. protected $fullImageType = 'Google_Service_Plus_ActivityObjectAttachmentsFullImage';
  1288. protected $fullImageDataType = '';
  1289. public $id;
  1290. protected $imageType = 'Google_Service_Plus_ActivityObjectAttachmentsImage';
  1291. protected $imageDataType = '';
  1292. public $objectType;
  1293. protected $thumbnailsType = 'Google_Service_Plus_ActivityObjectAttachmentsThumbnails';
  1294. protected $thumbnailsDataType = 'array';
  1295. public $url;
  1296. public function setContent($content)
  1297. {
  1298. $this->content = $content;
  1299. }
  1300. public function getContent()
  1301. {
  1302. return $this->content;
  1303. }
  1304. public function setDisplayName($displayName)
  1305. {
  1306. $this->displayName = $displayName;
  1307. }
  1308. public function getDisplayName()
  1309. {
  1310. return $this->displayName;
  1311. }
  1312. public function setEmbed(Google_Service_Plus_ActivityObjectAttachmentsEmbed $embed)
  1313. {
  1314. $this->embed = $embed;
  1315. }
  1316. public function getEmbed()
  1317. {
  1318. return $this->embed;
  1319. }
  1320. public function setFullImage(Google_Service_Plus_ActivityObjectAttachmentsFullImage $fullImage)
  1321. {
  1322. $this->fullImage = $fullImage;
  1323. }
  1324. public function getFullImage()
  1325. {
  1326. return $this->fullImage;
  1327. }
  1328. public function setId($id)
  1329. {
  1330. $this->id = $id;
  1331. }
  1332. public function getId()
  1333. {
  1334. return $this->id;
  1335. }
  1336. public function setImage(Google_Service_Plus_ActivityObjectAttachmentsImage $image)
  1337. {
  1338. $this->image = $image;
  1339. }
  1340. public function getImage()
  1341. {
  1342. return $this->image;
  1343. }
  1344. public function setObjectType($objectType)
  1345. {
  1346. $this->objectType = $objectType;
  1347. }
  1348. public function getObjectType()
  1349. {
  1350. return $this->objectType;
  1351. }
  1352. public function setThumbnails($thumbnails)
  1353. {
  1354. $this->thumbnails = $thumbnails;
  1355. }
  1356. public function getThumbnails()
  1357. {
  1358. return $this->thumbnails;
  1359. }
  1360. public function setUrl($url)
  1361. {
  1362. $this->url = $url;
  1363. }
  1364. public function getUrl()
  1365. {
  1366. return $this->url;
  1367. }
  1368. }
  1369. class Google_Service_Plus_ActivityObjectAttachmentsEmbed extends Google_Model
  1370. {
  1371. protected $internal_gapi_mappings = array(
  1372. );
  1373. public $type;
  1374. public $url;
  1375. public function setType($type)
  1376. {
  1377. $this->type = $type;
  1378. }
  1379. public function getType()
  1380. {
  1381. return $this->type;
  1382. }
  1383. public function setUrl($url)
  1384. {
  1385. $this->url = $url;
  1386. }
  1387. public function getUrl()
  1388. {
  1389. return $this->url;
  1390. }
  1391. }
  1392. class Google_Service_Plus_ActivityObjectAttachmentsFullImage extends Google_Model
  1393. {
  1394. protected $internal_gapi_mappings = array(
  1395. );
  1396. public $height;
  1397. public $type;
  1398. public $url;
  1399. public $width;
  1400. public function setHeight($height)
  1401. {
  1402. $this->height = $height;
  1403. }
  1404. public function getHeight()
  1405. {
  1406. return $this->height;
  1407. }
  1408. public function setType($type)
  1409. {
  1410. $this->type = $type;
  1411. }
  1412. public function getType()
  1413. {
  1414. return $this->type;
  1415. }
  1416. public function setUrl($url)
  1417. {
  1418. $this->url = $url;
  1419. }
  1420. public function getUrl()
  1421. {
  1422. return $this->url;
  1423. }
  1424. public function setWidth($width)
  1425. {
  1426. $this->width = $width;
  1427. }
  1428. public function getWidth()
  1429. {
  1430. return $this->width;
  1431. }
  1432. }
  1433. class Google_Service_Plus_ActivityObjectAttachmentsImage extends Google_Model
  1434. {
  1435. protected $internal_gapi_mappings = array(
  1436. );
  1437. public $height;
  1438. public $type;
  1439. public $url;
  1440. public $width;
  1441. public function setHeight($height)
  1442. {
  1443. $this->height = $height;
  1444. }
  1445. public function getHeight()
  1446. {
  1447. return $this->height;
  1448. }
  1449. public function setType($type)
  1450. {
  1451. $this->type = $type;
  1452. }
  1453. public function getType()
  1454. {
  1455. return $this->type;
  1456. }
  1457. public function setUrl($url)
  1458. {
  1459. $this->url = $url;
  1460. }
  1461. public function getUrl()
  1462. {
  1463. return $this->url;
  1464. }
  1465. public function setWidth($width)
  1466. {
  1467. $this->width = $width;
  1468. }
  1469. public function getWidth()
  1470. {
  1471. return $this->width;
  1472. }
  1473. }
  1474. class Google_Service_Plus_ActivityObjectAttachmentsThumbnails extends Google_Model
  1475. {
  1476. protected $internal_gapi_mappings = array(
  1477. );
  1478. public $description;
  1479. protected $imageType = 'Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage';
  1480. protected $imageDataType = '';
  1481. public $url;
  1482. public function setDescription($description)
  1483. {
  1484. $this->description = $description;
  1485. }
  1486. public function getDescription()
  1487. {
  1488. return $this->description;
  1489. }
  1490. public function setImage(Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage $image)
  1491. {
  1492. $this->image = $image;
  1493. }
  1494. public function getImage()
  1495. {
  1496. return $this->image;
  1497. }
  1498. public function setUrl($url)
  1499. {
  1500. $this->url = $url;
  1501. }
  1502. public function getUrl()
  1503. {
  1504. return $this->url;
  1505. }
  1506. }
  1507. class Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage extends Google_Model
  1508. {
  1509. protected $internal_gapi_mappings = array(
  1510. );
  1511. public $height;
  1512. public $type;
  1513. public $url;
  1514. public $width;
  1515. public function setHeight($height)
  1516. {
  1517. $this->height = $height;
  1518. }
  1519. public function getHeight()
  1520. {
  1521. return $this->height;
  1522. }
  1523. public function setType($type)
  1524. {
  1525. $this->type = $type;
  1526. }
  1527. public function getType()
  1528. {
  1529. return $this->type;
  1530. }
  1531. public function setUrl($url)
  1532. {
  1533. $this->url = $url;
  1534. }
  1535. public function getUrl()
  1536. {
  1537. return $this->url;
  1538. }
  1539. public function setWidth($width)
  1540. {
  1541. $this->width = $width;
  1542. }
  1543. public function getWidth()
  1544. {
  1545. return $this->width;
  1546. }
  1547. }
  1548. class Google_Service_Plus_ActivityObjectPlusoners extends Google_Model
  1549. {
  1550. protected $internal_gapi_mappings = array(
  1551. );
  1552. public $selfLink;
  1553. public $totalItems;
  1554. public function setSelfLink($selfLink)
  1555. {
  1556. $this->selfLink = $selfLink;
  1557. }
  1558. public function getSelfLink()
  1559. {
  1560. return $this->selfLink;
  1561. }
  1562. public function setTotalItems($totalItems)
  1563. {
  1564. $this->totalItems = $totalItems;
  1565. }
  1566. public function getTotalItems()
  1567. {
  1568. return $this->totalItems;
  1569. }
  1570. }
  1571. class Google_Service_Plus_ActivityObjectReplies extends Google_Model
  1572. {
  1573. protected $internal_gapi_mappings = array(
  1574. );
  1575. public $selfLink;
  1576. public $totalItems;
  1577. public function setSelfLink($selfLink)
  1578. {
  1579. $this->selfLink = $selfLink;
  1580. }
  1581. public function getSelfLink()
  1582. {
  1583. return $this->selfLink;
  1584. }
  1585. public function setTotalItems($totalItems)
  1586. {
  1587. $this->totalItems = $totalItems;
  1588. }
  1589. public function getTotalItems()
  1590. {
  1591. return $this->totalItems;
  1592. }
  1593. }
  1594. class Google_Service_Plus_ActivityObjectResharers extends Google_Model
  1595. {
  1596. protected $internal_gapi_mappings = array(
  1597. );
  1598. public $selfLink;
  1599. public $totalItems;
  1600. public function setSelfLink($selfLink)
  1601. {
  1602. $this->selfLink = $selfLink;
  1603. }
  1604. public function getSelfLink()
  1605. {
  1606. return $this->selfLink;
  1607. }
  1608. public function setTotalItems($totalItems)
  1609. {
  1610. $this->totalItems = $totalItems;
  1611. }
  1612. public function getTotalItems()
  1613. {
  1614. return $this->totalItems;
  1615. }
  1616. }
  1617. class Google_Service_Plus_ActivityProvider extends Google_Model
  1618. {
  1619. protected $internal_gapi_mappings = array(
  1620. );
  1621. public $title;
  1622. public function setTitle($title)
  1623. {
  1624. $this->title = $title;
  1625. }
  1626. public function getTitle()
  1627. {
  1628. return $this->title;
  1629. }
  1630. }
  1631. class Google_Service_Plus_Comment extends Google_Collection
  1632. {
  1633. protected $collection_key = 'inReplyTo';
  1634. protected $internal_gapi_mappings = array(
  1635. );
  1636. protected $actorType = 'Google_Service_Plus_CommentActor';
  1637. protected $actorDataType = '';
  1638. public $etag;
  1639. public $id;
  1640. protected $inReplyToType = 'Google_Service_Plus_CommentInReplyTo';
  1641. protected $inReplyToDataType = 'array';
  1642. public $kind;
  1643. protected $objectType = 'Google_Service_Plus_CommentObject';
  1644. protected $objectDataType = '';
  1645. protected $plusonersType = 'Google_Service_Plus_CommentPlusoners';
  1646. protected $plusonersDataType = '';
  1647. public $published;
  1648. public $selfLink;
  1649. public $updated;
  1650. public $verb;
  1651. public function setActor(Google_Service_Plus_CommentActor $actor)
  1652. {
  1653. $this->actor = $actor;
  1654. }
  1655. public function getActor()
  1656. {
  1657. return $this->actor;
  1658. }
  1659. public function setEtag($etag)
  1660. {
  1661. $this->etag = $etag;
  1662. }
  1663. public function getEtag()
  1664. {
  1665. return $this->etag;
  1666. }
  1667. public function setId($id)
  1668. {
  1669. $this->id = $id;
  1670. }
  1671. public function getId()
  1672. {
  1673. return $this->id;
  1674. }
  1675. public function setInReplyTo($inReplyTo)
  1676. {
  1677. $this->inReplyTo = $inReplyTo;
  1678. }
  1679. public function getInReplyTo()
  1680. {
  1681. return $this->inReplyTo;
  1682. }
  1683. public function setKind($kind)
  1684. {
  1685. $this->kind = $kind;
  1686. }
  1687. public function getKind()
  1688. {
  1689. return $this->kind;
  1690. }
  1691. public function setObject(Google_Service_Plus_CommentObject $object)
  1692. {
  1693. $this->object = $object;
  1694. }
  1695. public function getObject()
  1696. {
  1697. return $this->object;
  1698. }
  1699. public function setPlusoners(Google_Service_Plus_CommentPlusoners $plusoners)
  1700. {
  1701. $this->plusoners = $plusoners;
  1702. }
  1703. public function getPlusoners()
  1704. {
  1705. return $this->plusoners;
  1706. }
  1707. public function setPublished($published)
  1708. {
  1709. $this->published = $published;
  1710. }
  1711. public function getPublished()
  1712. {
  1713. return $this->published;
  1714. }
  1715. public function setSelfLink($selfLink)
  1716. {
  1717. $this->selfLink = $selfLink;
  1718. }
  1719. public function getSelfLink()
  1720. {
  1721. return $this->selfLink;
  1722. }
  1723. public function setUpdated($updated)
  1724. {
  1725. $this->updated = $updated;
  1726. }
  1727. public function getUpdated()
  1728. {
  1729. return $this->updated;
  1730. }
  1731. public function setVerb($verb)
  1732. {
  1733. $this->verb = $verb;
  1734. }
  1735. public function getVerb()
  1736. {
  1737. return $this->verb;
  1738. }
  1739. }
  1740. class Google_Service_Plus_CommentActor extends Google_Model
  1741. {
  1742. protected $internal_gapi_mappings = array(
  1743. );
  1744. protected $clientSpecificActorInfoType = 'Google_Service_Plus_CommentActorClientSpecificActorInfo';
  1745. protected $clientSpecificActorInfoDataType = '';
  1746. public $displayName;
  1747. public $id;
  1748. protected $imageType = 'Google_Service_Plus_CommentActorImage';
  1749. protected $imageDataType = '';
  1750. public $url;
  1751. protected $verificationType = 'Google_Service_Plus_CommentActorVerification';
  1752. protected $verificationDataType = '';
  1753. public function setClientSpecificActorInfo(Google_Service_Plus_CommentActorClientSpecificActorInfo $clientSpecificActorInfo)
  1754. {
  1755. $this->clientSpecificActorInfo = $clientSpecificActorInfo;
  1756. }
  1757. public function getClientSpecificActorInfo()
  1758. {
  1759. return $this->clientSpecificActorInfo;
  1760. }
  1761. public function setDisplayName($displayName)
  1762. {
  1763. $this->displayName = $displayName;
  1764. }
  1765. public function getDisplayName()
  1766. {
  1767. return $this->displayName;
  1768. }
  1769. public function setId($id)
  1770. {
  1771. $this->id = $id;
  1772. }
  1773. public function getId()
  1774. {
  1775. return $this->id;
  1776. }
  1777. public function setImage(Google_Service_Plus_CommentActorImage $image)
  1778. {
  1779. $this->image = $image;
  1780. }
  1781. public function getImage()
  1782. {
  1783. return $this->image;
  1784. }
  1785. public function setUrl($url)
  1786. {
  1787. $this->url = $url;
  1788. }
  1789. public function getUrl()
  1790. {
  1791. return $this->url;
  1792. }
  1793. public function setVerification(Google_Service_Plus_CommentActorVerification $verification)
  1794. {
  1795. $this->verification = $verification;
  1796. }
  1797. public function getVerification()
  1798. {
  1799. return $this->verification;
  1800. }
  1801. }
  1802. class Google_Service_Plus_CommentActorClientSpecificActorInfo extends Google_Model
  1803. {
  1804. protected $internal_gapi_mappings = array(
  1805. );
  1806. protected $youtubeActorInfoType = 'Google_Service_Plus_CommentActorClientSpecificActorInfoYoutubeActorInfo';
  1807. protected $youtubeActorInfoDataType = '';
  1808. public function setYoutubeActorInfo(Google_Service_Plus_CommentActorClientSpecificActorInfoYoutubeActorInfo $youtubeActorInfo)
  1809. {
  1810. $this->youtubeActorInfo = $youtubeActorInfo;
  1811. }
  1812. public function getYoutubeActorInfo()
  1813. {
  1814. return $this->youtubeActorInfo;
  1815. }
  1816. }
  1817. class Google_Service_Plus_CommentActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
  1818. {
  1819. protected $internal_gapi_mappings = array(
  1820. );
  1821. public $channelId;
  1822. public function setChannelId($channelId)
  1823. {
  1824. $this->channelId = $channelId;
  1825. }
  1826. public function getChannelId()
  1827. {
  1828. return $this->channelId;
  1829. }
  1830. }
  1831. class Google_Service_Plus_CommentActorImage extends Google_Model
  1832. {
  1833. protected $internal_gapi_mappings = array(
  1834. );
  1835. public $url;
  1836. public function setUrl($url)
  1837. {
  1838. $this->url = $url;
  1839. }
  1840. public function getUrl()
  1841. {
  1842. return $this->url;
  1843. }
  1844. }
  1845. class Google_Service_Plus_CommentActorVerification extends Google_Model
  1846. {
  1847. protected $internal_gapi_mappings = array(
  1848. );
  1849. public $adHocVerified;
  1850. public function setAdHocVerified($adHocVerified)
  1851. {
  1852. $this->adHocVerified = $adHocVerified;
  1853. }
  1854. public function getAdHocVerified()
  1855. {
  1856. return $this->adHocVerified;
  1857. }
  1858. }
  1859. class Google_Service_Plus_CommentFeed extends Google_Collection
  1860. {
  1861. protected $collection_key = 'items';
  1862. protected $internal_gapi_mappings = array(
  1863. );
  1864. public $etag;
  1865. public $id;
  1866. protected $itemsType = 'Google_Service_Plus_Comment';
  1867. protected $itemsDataType = 'array';
  1868. public $kind;
  1869. public $nextLink;
  1870. public $nextPageToken;
  1871. public $title;
  1872. public $updated;
  1873. public function setEtag($etag)
  1874. {
  1875. $this->etag = $etag;
  1876. }
  1877. public function getEtag()
  1878. {
  1879. return $this->etag;
  1880. }
  1881. public function setId($id)
  1882. {
  1883. $this->id = $id;
  1884. }
  1885. public function getId()
  1886. {
  1887. return $this->id;
  1888. }
  1889. public function setItems($items)
  1890. {
  1891. $this->items = $items;
  1892. }
  1893. public function getItems()
  1894. {
  1895. return $this->items;
  1896. }
  1897. public function setKind($kind)
  1898. {
  1899. $this->kind = $kind;
  1900. }
  1901. public function getKind()
  1902. {
  1903. return $this->kind;
  1904. }
  1905. public function setNextLink($nextLink)
  1906. {
  1907. $this->nextLink = $nextLink;
  1908. }
  1909. public function getNextLink()
  1910. {
  1911. return $this->nextLink;
  1912. }
  1913. public function setNextPageToken($nextPageToken)
  1914. {
  1915. $this->nextPageToken = $nextPageToken;
  1916. }
  1917. public function getNextPageToken()
  1918. {
  1919. return $this->nextPageToken;
  1920. }
  1921. public function setTitle($title)
  1922. {
  1923. $this->title = $title;
  1924. }
  1925. public function getTitle()
  1926. {
  1927. return $this->title;
  1928. }
  1929. public function setUpdated($updated)
  1930. {
  1931. $this->updated = $updated;
  1932. }
  1933. public function getUpdated()
  1934. {
  1935. return $this->updated;
  1936. }
  1937. }
  1938. class Google_Service_Plus_CommentInReplyTo extends Google_Model
  1939. {
  1940. protected $internal_gapi_mappings = array(
  1941. );
  1942. public $id;
  1943. public $url;
  1944. public function setId($id)
  1945. {
  1946. $this->id = $id;
  1947. }
  1948. public function getId()
  1949. {
  1950. return $this->id;
  1951. }
  1952. public function setUrl($url)
  1953. {
  1954. $this->url = $url;
  1955. }
  1956. public function getUrl()
  1957. {
  1958. return $this->url;
  1959. }
  1960. }
  1961. class Google_Service_Plus_CommentObject extends Google_Model
  1962. {
  1963. protected $internal_gapi_mappings = array(
  1964. );
  1965. public $content;
  1966. public $objectType;
  1967. public $originalContent;
  1968. public function setContent($content)
  1969. {
  1970. $this->content = $content;
  1971. }
  1972. public function getContent()
  1973. {
  1974. return $this->content;
  1975. }
  1976. public function setObjectType($objectType)
  1977. {
  1978. $this->objectType = $objectType;
  1979. }
  1980. public function getObjectType()
  1981. {
  1982. return $this->objectType;
  1983. }
  1984. public function setOriginalContent($originalContent)
  1985. {
  1986. $this->originalContent = $originalContent;
  1987. }
  1988. public function getOriginalContent()
  1989. {
  1990. return $this->originalContent;
  1991. }
  1992. }
  1993. class Google_Service_Plus_CommentPlusoners extends Google_Model
  1994. {
  1995. protected $internal_gapi_mappings = array(
  1996. );
  1997. public $totalItems;
  1998. public function setTotalItems($totalItems)
  1999. {
  2000. $this->totalItems = $totalItems;
  2001. }
  2002. public function getTotalItems()
  2003. {
  2004. return $this->totalItems;
  2005. }
  2006. }
  2007. class Google_Service_Plus_ItemScope extends Google_Collection
  2008. {
  2009. protected $collection_key = 'performers';
  2010. protected $internal_gapi_mappings = array(
  2011. "associatedMedia" => "associated_media",
  2012. );
  2013. protected $aboutType = 'Google_Service_Plus_ItemScope';
  2014. protected $aboutDataType = '';
  2015. public $additionalName;
  2016. protected $addressType = 'Google_Service_Plus_ItemScope';
  2017. protected $addressDataType = '';
  2018. public $addressCountry;
  2019. public $addressLocality;
  2020. public $addressRegion;
  2021. protected $associatedMediaType = 'Google_Service_Plus_ItemScope';
  2022. protected $associatedMediaDataType = 'array';
  2023. public $attendeeCount;
  2024. protected $attendeesType = 'Google_Service_Plus_ItemScope';
  2025. protected $attendeesDataType = 'array';
  2026. protected $audioType = 'Google_Service_Plus_ItemScope';
  2027. protected $audioDataType = '';
  2028. protected $authorType = 'Google_Service_Plus_ItemScope';
  2029. protected $authorDataType = 'array';
  2030. public $bestRating;
  2031. public $birthDate;
  2032. protected $byArtistType = 'Google_Service_Plus_ItemScope';
  2033. protected $byArtistDataType = '';
  2034. public $caption;
  2035. public $contentSize;
  2036. public $contentUrl;
  2037. protected $contributorType = 'Google_Service_Plus_ItemScope';
  2038. protected $contributorDataType = 'array';
  2039. public $dateCreated;
  2040. public $dateModified;
  2041. public $datePublished;
  2042. public $description;
  2043. public $duration;
  2044. public $embedUrl;
  2045. public $endDate;
  2046. public $familyName;
  2047. public $gender;
  2048. protected $geoType = 'Google_Service_Plus_ItemScope';
  2049. protected $geoDataType = '';
  2050. public $givenName;
  2051. public $height;
  2052. public $id;
  2053. public $image;
  2054. protected $inAlbumType = 'Google_Service_Plus_ItemScope';
  2055. protected $inAlbumDataType = '';
  2056. public $kind;
  2057. public $latitude;
  2058. protected $locationType = 'Google_Service_Plus_ItemScope';
  2059. protected $locationDataType = '';
  2060. public $longitude;
  2061. public $name;
  2062. protected $partOfTVSeriesType = 'Google_Service_Plus_ItemScope';
  2063. protected $partOfTVSeriesDataType = '';
  2064. protected $performersType = 'Google_Service_Plus_ItemScope';
  2065. protected $performersDataType = 'array';
  2066. public $playerType;
  2067. public $postOfficeBoxNumber;
  2068. public $postalCode;
  2069. public $ratingValue;
  2070. protected $reviewRatingType = 'Google_Service_Plus_ItemScope';
  2071. protected $reviewRatingDataType = '';
  2072. public $startDate;
  2073. public $streetAddress;
  2074. public $text;
  2075. protected $thumbnailType = 'Google_Service_Plus_ItemScope';
  2076. protected $thumbnailDataType = '';
  2077. public $thumbnailUrl;
  2078. public $tickerSymbol;
  2079. public $type;
  2080. public $url;
  2081. public $width;
  2082. public $worstRating;
  2083. public function setAbout(Google_Service_Plus_ItemScope $about)
  2084. {
  2085. $this->about = $about;
  2086. }
  2087. public function getAbout()
  2088. {
  2089. return $this->about;
  2090. }
  2091. public function setAdditionalName($additionalName)
  2092. {
  2093. $this->additionalName = $additionalName;
  2094. }
  2095. public function getAdditionalName()
  2096. {
  2097. return $this->additionalName;
  2098. }
  2099. public function setAddress(Google_Service_Plus_ItemScope $address)
  2100. {
  2101. $this->address = $address;
  2102. }
  2103. public function getAddress()
  2104. {
  2105. return $this->address;
  2106. }
  2107. public function setAddressCountry($addressCountry)
  2108. {
  2109. $this->addressCountry = $addressCountry;
  2110. }
  2111. public function getAddressCountry()
  2112. {
  2113. return $this->addressCountry;
  2114. }
  2115. public function setAddressLocality($addressLocality)
  2116. {
  2117. $this->addressLocality = $addressLocality;
  2118. }
  2119. public function getAddressLocality()
  2120. {
  2121. return $this->addressLocality;
  2122. }
  2123. public function setAddressRegion($addressRegion)
  2124. {
  2125. $this->addressRegion = $addressRegion;
  2126. }
  2127. public function getAddressRegion()
  2128. {
  2129. return $this->addressRegion;
  2130. }
  2131. public function setAssociatedMedia($associatedMedia)
  2132. {
  2133. $this->associatedMedia = $associatedMedia;
  2134. }
  2135. public function getAssociatedMedia()
  2136. {
  2137. return $this->associatedMedia;
  2138. }
  2139. public function setAttendeeCount($attendeeCount)
  2140. {
  2141. $this->attendeeCount = $attendeeCount;
  2142. }
  2143. public function getAttendeeCount()
  2144. {
  2145. return $this->attendeeCount;
  2146. }
  2147. public function setAttendees($attendees)
  2148. {
  2149. $this->attendees = $attendees;
  2150. }
  2151. public function getAttendees()
  2152. {
  2153. return $this->attendees;
  2154. }
  2155. public function setAudio(Google_Service_Plus_ItemScope $audio)
  2156. {
  2157. $this->audio = $audio;
  2158. }
  2159. public function getAudio()
  2160. {
  2161. return $this->audio;
  2162. }
  2163. public function setAuthor($author)
  2164. {
  2165. $this->author = $author;
  2166. }
  2167. public function getAuthor()
  2168. {
  2169. return $this->author;
  2170. }
  2171. public function setBestRating($bestRating)
  2172. {
  2173. $this->bestRating = $bestRating;
  2174. }
  2175. public function getBestRating()
  2176. {
  2177. return $this->bestRating;
  2178. }
  2179. public function setBirthDate($birthDate)
  2180. {
  2181. $this->birthDate = $birthDate;
  2182. }
  2183. public function getBirthDate()
  2184. {
  2185. return $this->birthDate;
  2186. }
  2187. public function setByArtist(Google_Service_Plus_ItemScope $byArtist)
  2188. {
  2189. $this->byArtist = $byArtist;
  2190. }
  2191. public function getByArtist()
  2192. {
  2193. return $this->byArtist;
  2194. }
  2195. public function setCaption($caption)
  2196. {
  2197. $this->caption = $caption;
  2198. }
  2199. public function getCaption()
  2200. {
  2201. return $this->caption;
  2202. }
  2203. public function setContentSize($contentSize)
  2204. {
  2205. $this->contentSize = $contentSize;
  2206. }
  2207. public function getContentSize()
  2208. {
  2209. return $this->contentSize;
  2210. }
  2211. public function setContentUrl($contentUrl)
  2212. {
  2213. $this->contentUrl = $contentUrl;
  2214. }
  2215. public function getContentUrl()
  2216. {
  2217. return $this->contentUrl;
  2218. }
  2219. public function setContributor($contributor)
  2220. {
  2221. $this->contributor = $contributor;
  2222. }
  2223. public function getContributor()
  2224. {
  2225. return $this->contributor;
  2226. }
  2227. public function setDateCreated($dateCreated)
  2228. {
  2229. $this->dateCreated = $dateCreated;
  2230. }
  2231. public function getDateCreated()
  2232. {
  2233. return $this->dateCreated;
  2234. }
  2235. public function setDateModified($dateModified)
  2236. {
  2237. $this->dateModified = $dateModified;
  2238. }
  2239. public function getDateModified()
  2240. {
  2241. return $this->dateModified;
  2242. }
  2243. public function setDatePublished($datePublished)
  2244. {
  2245. $this->datePublished = $datePublished;
  2246. }
  2247. public function getDatePublished()
  2248. {
  2249. return $this->datePublished;
  2250. }
  2251. public function setDescription($description)
  2252. {
  2253. $this->description = $description;
  2254. }
  2255. public function getDescription()
  2256. {
  2257. return $this->description;
  2258. }
  2259. public function setDuration($duration)
  2260. {
  2261. $this->duration = $duration;
  2262. }
  2263. public function getDuration()
  2264. {
  2265. return $this->duration;
  2266. }
  2267. public function setEmbedUrl($embedUrl)
  2268. {
  2269. $this->embedUrl = $embedUrl;
  2270. }
  2271. public function getEmbedUrl()
  2272. {
  2273. return $this->embedUrl;
  2274. }
  2275. public function setEndDate($endDate)
  2276. {
  2277. $this->endDate = $endDate;
  2278. }
  2279. public function getEndDate()
  2280. {
  2281. return $this->endDate;
  2282. }
  2283. public function setFamilyName($familyName)
  2284. {
  2285. $this->familyName = $familyName;
  2286. }
  2287. public function getFamilyName()
  2288. {
  2289. return $this->familyName;
  2290. }
  2291. public function setGender($gender)
  2292. {
  2293. $this->gender = $gender;
  2294. }
  2295. public function getGender()
  2296. {
  2297. return $this->gender;
  2298. }
  2299. public function setGeo(Google_Service_Plus_ItemScope $geo)
  2300. {
  2301. $this->geo = $geo;
  2302. }
  2303. public function getGeo()
  2304. {
  2305. return $this->geo;
  2306. }
  2307. public function setGivenName($givenName)
  2308. {
  2309. $this->givenName = $givenName;
  2310. }
  2311. public function getGivenName()
  2312. {
  2313. return $this->givenName;
  2314. }
  2315. public function setHeight($height)
  2316. {
  2317. $this->height = $height;
  2318. }
  2319. public function getHeight()
  2320. {
  2321. return $this->height;
  2322. }
  2323. public function setId($id)
  2324. {
  2325. $this->id = $id;
  2326. }
  2327. public function getId()
  2328. {
  2329. return $this->id;
  2330. }
  2331. public function setImage($image)
  2332. {
  2333. $this->image = $image;
  2334. }
  2335. public function getImage()
  2336. {
  2337. return $this->image;
  2338. }
  2339. public function setInAlbum(Google_Service_Plus_ItemScope $inAlbum)
  2340. {
  2341. $this->inAlbum = $inAlbum;
  2342. }
  2343. public function getInAlbum()
  2344. {
  2345. return $this->inAlbum;
  2346. }
  2347. public function setKind($kind)
  2348. {
  2349. $this->kind = $kind;
  2350. }
  2351. public function getKind()
  2352. {
  2353. return $this->kind;
  2354. }
  2355. public function setLatitude($latitude)
  2356. {
  2357. $this->latitude = $latitude;
  2358. }
  2359. public function getLatitude()
  2360. {
  2361. return $this->latitude;
  2362. }
  2363. public function setLocation(Google_Service_Plus_ItemScope $location)
  2364. {
  2365. $this->location = $location;
  2366. }
  2367. public function getLocation()
  2368. {
  2369. return $this->location;
  2370. }
  2371. public function setLongitude($longitude)
  2372. {
  2373. $this->longitude = $longitude;
  2374. }
  2375. public function getLongitude()
  2376. {
  2377. return $this->longitude;
  2378. }
  2379. public function setName($name)
  2380. {
  2381. $this->name = $name;
  2382. }
  2383. public function getName()
  2384. {
  2385. return $this->name;
  2386. }
  2387. public function setPartOfTVSeries(Google_Service_Plus_ItemScope $partOfTVSeries)
  2388. {
  2389. $this->partOfTVSeries = $partOfTVSeries;
  2390. }
  2391. public function getPartOfTVSeries()
  2392. {
  2393. return $this->partOfTVSeries;
  2394. }
  2395. public function setPerformers($performers)
  2396. {
  2397. $this->performers = $performers;
  2398. }
  2399. public function getPerformers()
  2400. {
  2401. return $this->performers;
  2402. }
  2403. public function setPlayerType($playerType)
  2404. {
  2405. $this->playerType = $playerType;
  2406. }
  2407. public function getPlayerType()
  2408. {
  2409. return $this->playerType;
  2410. }
  2411. public function setPostOfficeBoxNumber($postOfficeBoxNumber)
  2412. {
  2413. $this->postOfficeBoxNumber = $postOfficeBoxNumber;
  2414. }
  2415. public function getPostOfficeBoxNumber()
  2416. {
  2417. return $this->postOfficeBoxNumber;
  2418. }
  2419. public function setPostalCode($postalCode)
  2420. {
  2421. $this->postalCode = $postalCode;
  2422. }
  2423. public function getPostalCode()
  2424. {
  2425. return $this->postalCode;
  2426. }
  2427. public function setRatingValue($ratingValue)
  2428. {
  2429. $this->ratingValue = $ratingValue;
  2430. }
  2431. public function getRatingValue()
  2432. {
  2433. return $this->ratingValue;
  2434. }
  2435. public function setReviewRating(Google_Service_Plus_ItemScope $reviewRating)
  2436. {
  2437. $this->reviewRating = $reviewRating;
  2438. }
  2439. public function getReviewRating()
  2440. {
  2441. return $this->reviewRating;
  2442. }
  2443. public function setStartDate($startDate)
  2444. {
  2445. $this->startDate = $startDate;
  2446. }
  2447. public function getStartDate()
  2448. {
  2449. return $this->startDate;
  2450. }
  2451. public function setStreetAddress($streetAddress)
  2452. {
  2453. $this->streetAddress = $streetAddress;
  2454. }
  2455. public function getStreetAddress()
  2456. {
  2457. return $this->streetAddress;
  2458. }
  2459. public function setText($text)
  2460. {
  2461. $this->text = $text;
  2462. }
  2463. public function getText()
  2464. {
  2465. return $this->text;
  2466. }
  2467. public function setThumbnail(Google_Service_Plus_ItemScope $thumbnail)
  2468. {
  2469. $this->thumbnail = $thumbnail;
  2470. }
  2471. public function getThumbnail()
  2472. {
  2473. return $this->thumbnail;
  2474. }
  2475. public function setThumbnailUrl($thumbnailUrl)
  2476. {
  2477. $this->thumbnailUrl = $thumbnailUrl;
  2478. }
  2479. public function getThumbnailUrl()
  2480. {
  2481. return $this->thumbnailUrl;
  2482. }
  2483. public function setTickerSymbol($tickerSymbol)
  2484. {
  2485. $this->tickerSymbol = $tickerSymbol;
  2486. }
  2487. public function getTickerSymbol()
  2488. {
  2489. return $this->tickerSymbol;
  2490. }
  2491. public function setType($type)
  2492. {
  2493. $this->type = $type;
  2494. }
  2495. public function getType()
  2496. {
  2497. return $this->type;
  2498. }
  2499. public function setUrl($url)
  2500. {
  2501. $this->url = $url;
  2502. }
  2503. public function getUrl()
  2504. {
  2505. return $this->url;
  2506. }
  2507. public function setWidth($width)
  2508. {
  2509. $this->width = $width;
  2510. }
  2511. public function getWidth()
  2512. {
  2513. return $this->width;
  2514. }
  2515. public function setWorstRating($worstRating)
  2516. {
  2517. $this->worstRating = $worstRating;
  2518. }
  2519. public function getWorstRating()
  2520. {
  2521. return $this->worstRating;
  2522. }
  2523. }
  2524. class Google_Service_Plus_Moment extends Google_Model
  2525. {
  2526. protected $internal_gapi_mappings = array(
  2527. );
  2528. public $id;
  2529. public $kind;
  2530. protected $objectType = 'Google_Service_Plus_ItemScope';
  2531. protected $objectDataType = '';
  2532. protected $resultType = 'Google_Service_Plus_ItemScope';
  2533. protected $resultDataType = '';
  2534. public $startDate;
  2535. protected $targetType = 'Google_Service_Plus_ItemScope';
  2536. protected $targetDataType = '';
  2537. public $type;
  2538. public function setId($id)
  2539. {
  2540. $this->id = $id;
  2541. }
  2542. public function getId()
  2543. {
  2544. return $this->id;
  2545. }
  2546. public function setKind($kind)
  2547. {
  2548. $this->kind = $kind;
  2549. }
  2550. public function getKind()
  2551. {
  2552. return $this->kind;
  2553. }
  2554. public function setObject(Google_Service_Plus_ItemScope $object)
  2555. {
  2556. $this->object = $object;
  2557. }
  2558. public function getObject()
  2559. {
  2560. return $this->object;
  2561. }
  2562. public function setResult(Google_Service_Plus_ItemScope $result)
  2563. {
  2564. $this->result = $result;
  2565. }
  2566. public function getResult()
  2567. {
  2568. return $this->result;
  2569. }
  2570. public function setStartDate($startDate)
  2571. {
  2572. $this->startDate = $startDate;
  2573. }
  2574. public function getStartDate()
  2575. {
  2576. return $this->startDate;
  2577. }
  2578. public function setTarget(Google_Service_Plus_ItemScope $target)
  2579. {
  2580. $this->target = $target;
  2581. }
  2582. public function getTarget()
  2583. {
  2584. return $this->target;
  2585. }
  2586. public function setType($type)
  2587. {
  2588. $this->type = $type;
  2589. }
  2590. public function getType()
  2591. {
  2592. return $this->type;
  2593. }
  2594. }
  2595. class Google_Service_Plus_MomentsFeed extends Google_Collection
  2596. {
  2597. protected $collection_key = 'items';
  2598. protected $internal_gapi_mappings = array(
  2599. );
  2600. public $etag;
  2601. protected $itemsType = 'Google_Service_Plus_Moment';
  2602. protected $itemsDataType = 'array';
  2603. public $kind;
  2604. public $nextLink;
  2605. public $nextPageToken;
  2606. public $selfLink;
  2607. public $title;
  2608. public $updated;
  2609. public function setEtag($etag)
  2610. {
  2611. $this->etag = $etag;
  2612. }
  2613. public function getEtag()
  2614. {
  2615. return $this->etag;
  2616. }
  2617. public function setItems($items)
  2618. {
  2619. $this->items = $items;
  2620. }
  2621. public function getItems()
  2622. {
  2623. return $this->items;
  2624. }
  2625. public function setKind($kind)
  2626. {
  2627. $this->kind = $kind;
  2628. }
  2629. public function getKind()
  2630. {
  2631. return $this->kind;
  2632. }
  2633. public function setNextLink($nextLink)
  2634. {
  2635. $this->nextLink = $nextLink;
  2636. }
  2637. public function getNextLink()
  2638. {
  2639. return $this->nextLink;
  2640. }
  2641. public function setNextPageToken($nextPageToken)
  2642. {
  2643. $this->nextPageToken = $nextPageToken;
  2644. }
  2645. public function getNextPageToken()
  2646. {
  2647. return $this->nextPageToken;
  2648. }
  2649. public function setSelfLink($selfLink)
  2650. {
  2651. $this->selfLink = $selfLink;
  2652. }
  2653. public function getSelfLink()
  2654. {
  2655. return $this->selfLink;
  2656. }
  2657. public function setTitle($title)
  2658. {
  2659. $this->title = $title;
  2660. }
  2661. public function getTitle()
  2662. {
  2663. return $this->title;
  2664. }
  2665. public function setUpdated($updated)
  2666. {
  2667. $this->updated = $updated;
  2668. }
  2669. public function getUpdated()
  2670. {
  2671. return $this->updated;
  2672. }
  2673. }
  2674. class Google_Service_Plus_PeopleFeed extends Google_Collection
  2675. {
  2676. protected $collection_key = 'items';
  2677. protected $internal_gapi_mappings = array(
  2678. );
  2679. public $etag;
  2680. protected $itemsType = 'Google_Service_Plus_Person';
  2681. protected $itemsDataType = 'array';
  2682. public $kind;
  2683. public $nextPageToken;
  2684. public $selfLink;
  2685. public $title;
  2686. public $totalItems;
  2687. public function setEtag($etag)
  2688. {
  2689. $this->etag = $etag;
  2690. }
  2691. public function getEtag()
  2692. {
  2693. return $this->etag;
  2694. }
  2695. public function setItems($items)
  2696. {
  2697. $this->items = $items;
  2698. }
  2699. public function getItems()
  2700. {
  2701. return $this->items;
  2702. }
  2703. public function setKind($kind)
  2704. {
  2705. $this->kind = $kind;
  2706. }
  2707. public function getKind()
  2708. {
  2709. return $this->kind;
  2710. }
  2711. public function setNextPageToken($nextPageToken)
  2712. {
  2713. $this->nextPageToken = $nextPageToken;
  2714. }
  2715. public function getNextPageToken()
  2716. {
  2717. return $this->nextPageToken;
  2718. }
  2719. public function setSelfLink($selfLink)
  2720. {
  2721. $this->selfLink = $selfLink;
  2722. }
  2723. public function getSelfLink()
  2724. {
  2725. return $this->selfLink;
  2726. }
  2727. public function setTitle($title)
  2728. {
  2729. $this->title = $title;
  2730. }
  2731. public function getTitle()
  2732. {
  2733. return $this->title;
  2734. }
  2735. public function setTotalItems($totalItems)
  2736. {
  2737. $this->totalItems = $totalItems;
  2738. }
  2739. public function getTotalItems()
  2740. {
  2741. return $this->totalItems;
  2742. }
  2743. }
  2744. class Google_Service_Plus_Person extends Google_Collection
  2745. {
  2746. protected $collection_key = 'urls';
  2747. protected $internal_gapi_mappings = array(
  2748. );
  2749. public $aboutMe;
  2750. protected $ageRangeType = 'Google_Service_Plus_PersonAgeRange';
  2751. protected $ageRangeDataType = '';
  2752. public $birthday;
  2753. public $braggingRights;
  2754. public $circledByCount;
  2755. protected $coverType = 'Google_Service_Plus_PersonCover';
  2756. protected $coverDataType = '';
  2757. public $currentLocation;
  2758. public $displayName;
  2759. public $domain;
  2760. protected $emailsType = 'Google_Service_Plus_PersonEmails';
  2761. protected $emailsDataType = 'array';
  2762. public $etag;
  2763. public $gender;
  2764. public $id;
  2765. protected $imageType = 'Google_Service_Plus_PersonImage';
  2766. protected $imageDataType = '';
  2767. public $isPlusUser;
  2768. public $kind;
  2769. public $language;
  2770. protected $nameType = 'Google_Service_Plus_PersonName';
  2771. protected $nameDataType = '';
  2772. public $nickname;
  2773. public $objectType;
  2774. public $occupation;
  2775. protected $organizationsType = 'Google_Service_Plus_PersonOrganizations';
  2776. protected $organizationsDataType = 'array';
  2777. protected $placesLivedType = 'Google_Service_Plus_PersonPlacesLived';
  2778. protected $placesLivedDataType = 'array';
  2779. public $plusOneCount;
  2780. public $relationshipStatus;
  2781. public $skills;
  2782. public $tagline;
  2783. public $url;
  2784. protected $urlsType = 'Google_Service_Plus_PersonUrls';
  2785. protected $urlsDataType = 'array';
  2786. public $verified;
  2787. public function setAboutMe($aboutMe)
  2788. {
  2789. $this->aboutMe = $aboutMe;
  2790. }
  2791. public function getAboutMe()
  2792. {
  2793. return $this->aboutMe;
  2794. }
  2795. public function setAgeRange(Google_Service_Plus_PersonAgeRange $ageRange)
  2796. {
  2797. $this->ageRange = $ageRange;
  2798. }
  2799. public function getAgeRange()
  2800. {
  2801. return $this->ageRange;
  2802. }
  2803. public function setBirthday($birthday)
  2804. {
  2805. $this->birthday = $birthday;
  2806. }
  2807. public function getBirthday()
  2808. {
  2809. return $this->birthday;
  2810. }
  2811. public function setBraggingRights($braggingRights)
  2812. {
  2813. $this->braggingRights = $braggingRights;
  2814. }
  2815. public function getBraggingRights()
  2816. {
  2817. return $this->braggingRights;
  2818. }
  2819. public function setCircledByCount($circledByCount)
  2820. {
  2821. $this->circledByCount = $circledByCount;
  2822. }
  2823. public function getCircledByCount()
  2824. {
  2825. return $this->circledByCount;
  2826. }
  2827. public function setCover(Google_Service_Plus_PersonCover $cover)
  2828. {
  2829. $this->cover = $cover;
  2830. }
  2831. public function getCover()
  2832. {
  2833. return $this->cover;
  2834. }
  2835. public function setCurrentLocation($currentLocation)
  2836. {
  2837. $this->currentLocation = $currentLocation;
  2838. }
  2839. public function getCurrentLocation()
  2840. {
  2841. return $this->currentLocation;
  2842. }
  2843. public function setDisplayName($displayName)
  2844. {
  2845. $this->displayName = $displayName;
  2846. }
  2847. public function getDisplayName()
  2848. {
  2849. return $this->displayName;
  2850. }
  2851. public function setDomain($domain)
  2852. {
  2853. $this->domain = $domain;
  2854. }
  2855. public function getDomain()
  2856. {
  2857. return $this->domain;
  2858. }
  2859. public function setEmails($emails)
  2860. {
  2861. $this->emails = $emails;
  2862. }
  2863. public function getEmails()
  2864. {
  2865. return $this->emails;
  2866. }
  2867. public function setEtag($etag)
  2868. {
  2869. $this->etag = $etag;
  2870. }
  2871. public function getEtag()
  2872. {
  2873. return $this->etag;
  2874. }
  2875. public function setGender($gender)
  2876. {
  2877. $this->gender = $gender;
  2878. }
  2879. public function getGender()
  2880. {
  2881. return $this->gender;
  2882. }
  2883. public function setId($id)
  2884. {
  2885. $this->id = $id;
  2886. }
  2887. public function getId()
  2888. {
  2889. return $this->id;
  2890. }
  2891. public function setImage(Google_Service_Plus_PersonImage $image)
  2892. {
  2893. $this->image = $image;
  2894. }
  2895. public function getImage()
  2896. {
  2897. return $this->image;
  2898. }
  2899. public function setIsPlusUser($isPlusUser)
  2900. {
  2901. $this->isPlusUser = $isPlusUser;
  2902. }
  2903. public function getIsPlusUser()
  2904. {
  2905. return $this->isPlusUser;
  2906. }
  2907. public function setKind($kind)
  2908. {
  2909. $this->kind = $kind;
  2910. }
  2911. public function getKind()
  2912. {
  2913. return $this->kind;
  2914. }
  2915. public function setLanguage($language)
  2916. {
  2917. $this->language = $language;
  2918. }
  2919. public function getLanguage()
  2920. {
  2921. return $this->language;
  2922. }
  2923. public function setName(Google_Service_Plus_PersonName $name)
  2924. {
  2925. $this->name = $name;
  2926. }
  2927. public function getName()
  2928. {
  2929. return $this->name;
  2930. }
  2931. public function setNickname($nickname)
  2932. {
  2933. $this->nickname = $nickname;
  2934. }
  2935. public function getNickname()
  2936. {
  2937. return $this->nickname;
  2938. }
  2939. public function setObjectType($objectType)
  2940. {
  2941. $this->objectType = $objectType;
  2942. }
  2943. public function getObjectType()
  2944. {
  2945. return $this->objectType;
  2946. }
  2947. public function setOccupation($occupation)
  2948. {
  2949. $this->occupation = $occupation;
  2950. }
  2951. public function getOccupation()
  2952. {
  2953. return $this->occupation;
  2954. }
  2955. public function setOrganizations($organizations)
  2956. {
  2957. $this->organizations = $organizations;
  2958. }
  2959. public function getOrganizations()
  2960. {
  2961. return $this->organizations;
  2962. }
  2963. public function setPlacesLived($placesLived)
  2964. {
  2965. $this->placesLived = $placesLived;
  2966. }
  2967. public function getPlacesLived()
  2968. {
  2969. return $this->placesLived;
  2970. }
  2971. public function setPlusOneCount($plusOneCount)
  2972. {
  2973. $this->plusOneCount = $plusOneCount;
  2974. }
  2975. public function getPlusOneCount()
  2976. {
  2977. return $this->plusOneCount;
  2978. }
  2979. public function setRelationshipStatus($relationshipStatus)
  2980. {
  2981. $this->relationshipStatus = $relationshipStatus;
  2982. }
  2983. public function getRelationshipStatus()
  2984. {
  2985. return $this->relationshipStatus;
  2986. }
  2987. public function setSkills($skills)
  2988. {
  2989. $this->skills = $skills;
  2990. }
  2991. public function getSkills()
  2992. {
  2993. return $this->skills;
  2994. }
  2995. public function setTagline($tagline)
  2996. {
  2997. $this->tagline = $tagline;
  2998. }
  2999. public function getTagline()
  3000. {
  3001. return $this->tagline;
  3002. }
  3003. public function setUrl($url)
  3004. {
  3005. $this->url = $url;
  3006. }
  3007. public function getUrl()
  3008. {
  3009. return $this->url;
  3010. }
  3011. public function setUrls($urls)
  3012. {
  3013. $this->urls = $urls;
  3014. }
  3015. public function getUrls()
  3016. {
  3017. return $this->urls;
  3018. }
  3019. public function setVerified($verified)
  3020. {
  3021. $this->verified = $verified;
  3022. }
  3023. public function getVerified()
  3024. {
  3025. return $this->verified;
  3026. }
  3027. }
  3028. class Google_Service_Plus_PersonAgeRange extends Google_Model
  3029. {
  3030. protected $internal_gapi_mappings = array(
  3031. );
  3032. public $max;
  3033. public $min;
  3034. public function setMax($max)
  3035. {
  3036. $this->max = $max;
  3037. }
  3038. public function getMax()
  3039. {
  3040. return $this->max;
  3041. }
  3042. public function setMin($min)
  3043. {
  3044. $this->min = $min;
  3045. }
  3046. public function getMin()
  3047. {
  3048. return $this->min;
  3049. }
  3050. }
  3051. class Google_Service_Plus_PersonCover extends Google_Model
  3052. {
  3053. protected $internal_gapi_mappings = array(
  3054. );
  3055. protected $coverInfoType = 'Google_Service_Plus_PersonCoverCoverInfo';
  3056. protected $coverInfoDataType = '';
  3057. protected $coverPhotoType = 'Google_Service_Plus_PersonCoverCoverPhoto';
  3058. protected $coverPhotoDataType = '';
  3059. public $layout;
  3060. public function setCoverInfo(Google_Service_Plus_PersonCoverCoverInfo $coverInfo)
  3061. {
  3062. $this->coverInfo = $coverInfo;
  3063. }
  3064. public function getCoverInfo()
  3065. {
  3066. return $this->coverInfo;
  3067. }
  3068. public function setCoverPhoto(Google_Service_Plus_PersonCoverCoverPhoto $coverPhoto)
  3069. {
  3070. $this->coverPhoto = $coverPhoto;
  3071. }
  3072. public function getCoverPhoto()
  3073. {
  3074. return $this->coverPhoto;
  3075. }
  3076. public function setLayout($layout)
  3077. {
  3078. $this->layout = $layout;
  3079. }
  3080. public function getLayout()
  3081. {
  3082. return $this->layout;
  3083. }
  3084. }
  3085. class Google_Service_Plus_PersonCoverCoverInfo extends Google_Model
  3086. {
  3087. protected $internal_gapi_mappings = array(
  3088. );
  3089. public $leftImageOffset;
  3090. public $topImageOffset;
  3091. public function setLeftImageOffset($leftImageOffset)
  3092. {
  3093. $this->leftImageOffset = $leftImageOffset;
  3094. }
  3095. public function getLeftImageOffset()
  3096. {
  3097. return $this->leftImageOffset;
  3098. }
  3099. public function setTopImageOffset($topImageOffset)
  3100. {
  3101. $this->topImageOffset = $topImageOffset;
  3102. }
  3103. public function getTopImageOffset()
  3104. {
  3105. return $this->topImageOffset;
  3106. }
  3107. }
  3108. class Google_Service_Plus_PersonCoverCoverPhoto extends Google_Model
  3109. {
  3110. protected $internal_gapi_mappings = array(
  3111. );
  3112. public $height;
  3113. public $url;
  3114. public $width;
  3115. public function setHeight($height)
  3116. {
  3117. $this->height = $height;
  3118. }
  3119. public function getHeight()
  3120. {
  3121. return $this->height;
  3122. }
  3123. public function setUrl($url)
  3124. {
  3125. $this->url = $url;
  3126. }
  3127. public function getUrl()
  3128. {
  3129. return $this->url;
  3130. }
  3131. public function setWidth($width)
  3132. {
  3133. $this->width = $width;
  3134. }
  3135. public function getWidth()
  3136. {
  3137. return $this->width;
  3138. }
  3139. }
  3140. class Google_Service_Plus_PersonEmails extends Google_Model
  3141. {
  3142. protected $internal_gapi_mappings = array(
  3143. );
  3144. public $type;
  3145. public $value;
  3146. public function setType($type)
  3147. {
  3148. $this->type = $type;
  3149. }
  3150. public function getType()
  3151. {
  3152. return $this->type;
  3153. }
  3154. public function setValue($value)
  3155. {
  3156. $this->value = $value;
  3157. }
  3158. public function getValue()
  3159. {
  3160. return $this->value;
  3161. }
  3162. }
  3163. class Google_Service_Plus_PersonImage extends Google_Model
  3164. {
  3165. protected $internal_gapi_mappings = array(
  3166. );
  3167. public $isDefault;
  3168. public $url;
  3169. public function setIsDefault($isDefault)
  3170. {
  3171. $this->isDefault = $isDefault;
  3172. }
  3173. public function getIsDefault()
  3174. {
  3175. return $this->isDefault;
  3176. }
  3177. public function setUrl($url)
  3178. {
  3179. $this->url = $url;
  3180. }
  3181. public function getUrl()
  3182. {
  3183. return $this->url;
  3184. }
  3185. }
  3186. class Google_Service_Plus_PersonName extends Google_Model
  3187. {
  3188. protected $internal_gapi_mappings = array(
  3189. );
  3190. public $familyName;
  3191. public $formatted;
  3192. public $givenName;
  3193. public $honorificPrefix;
  3194. public $honorificSuffix;
  3195. public $middleName;
  3196. public function setFamilyName($familyName)
  3197. {
  3198. $this->familyName = $familyName;
  3199. }
  3200. public function getFamilyName()
  3201. {
  3202. return $this->familyName;
  3203. }
  3204. public function setFormatted($formatted)
  3205. {
  3206. $this->formatted = $formatted;
  3207. }
  3208. public function getFormatted()
  3209. {
  3210. return $this->formatted;
  3211. }
  3212. public function setGivenName($givenName)
  3213. {
  3214. $this->givenName = $givenName;
  3215. }
  3216. public function getGivenName()
  3217. {
  3218. return $this->givenName;
  3219. }
  3220. public function setHonorificPrefix($honorificPrefix)
  3221. {
  3222. $this->honorificPrefix = $honorificPrefix;
  3223. }
  3224. public function getHonorificPrefix()
  3225. {
  3226. return $this->honorificPrefix;
  3227. }
  3228. public function setHonorificSuffix($honorificSuffix)
  3229. {
  3230. $this->honorificSuffix = $honorificSuffix;
  3231. }
  3232. public function getHonorificSuffix()
  3233. {
  3234. return $this->honorificSuffix;
  3235. }
  3236. public function setMiddleName($middleName)
  3237. {
  3238. $this->middleName = $middleName;
  3239. }
  3240. public function getMiddleName()
  3241. {
  3242. return $this->middleName;
  3243. }
  3244. }
  3245. class Google_Service_Plus_PersonOrganizations extends Google_Model
  3246. {
  3247. protected $internal_gapi_mappings = array(
  3248. );
  3249. public $department;
  3250. public $description;
  3251. public $endDate;
  3252. public $location;
  3253. public $name;
  3254. public $primary;
  3255. public $startDate;
  3256. public $title;
  3257. public $type;
  3258. public function setDepartment($department)
  3259. {
  3260. $this->department = $department;
  3261. }
  3262. public function getDepartment()
  3263. {
  3264. return $this->department;
  3265. }
  3266. public function setDescription($description)
  3267. {
  3268. $this->description = $description;
  3269. }
  3270. public function getDescription()
  3271. {
  3272. return $this->description;
  3273. }
  3274. public function setEndDate($endDate)
  3275. {
  3276. $this->endDate = $endDate;
  3277. }
  3278. public function getEndDate()
  3279. {
  3280. return $this->endDate;
  3281. }
  3282. public function setLocation($location)
  3283. {
  3284. $this->location = $location;
  3285. }
  3286. public function getLocation()
  3287. {
  3288. return $this->location;
  3289. }
  3290. public function setName($name)
  3291. {
  3292. $this->name = $name;
  3293. }
  3294. public function getName()
  3295. {
  3296. return $this->name;
  3297. }
  3298. public function setPrimary($primary)
  3299. {
  3300. $this->primary = $primary;
  3301. }
  3302. public function getPrimary()
  3303. {
  3304. return $this->primary;
  3305. }
  3306. public function setStartDate($startDate)
  3307. {
  3308. $this->startDate = $startDate;
  3309. }
  3310. public function getStartDate()
  3311. {
  3312. return $this->startDate;
  3313. }
  3314. public function setTitle($title)
  3315. {
  3316. $this->title = $title;
  3317. }
  3318. public function getTitle()
  3319. {
  3320. return $this->title;
  3321. }
  3322. public function setType($type)
  3323. {
  3324. $this->type = $type;
  3325. }
  3326. public function getType()
  3327. {
  3328. return $this->type;
  3329. }
  3330. }
  3331. class Google_Service_Plus_PersonPlacesLived extends Google_Model
  3332. {
  3333. protected $internal_gapi_mappings = array(
  3334. );
  3335. public $primary;
  3336. public $value;
  3337. public function setPrimary($primary)
  3338. {
  3339. $this->primary = $primary;
  3340. }
  3341. public function getPrimary()
  3342. {
  3343. return $this->primary;
  3344. }
  3345. public function setValue($value)
  3346. {
  3347. $this->value = $value;
  3348. }
  3349. public function getValue()
  3350. {
  3351. return $this->value;
  3352. }
  3353. }
  3354. class Google_Service_Plus_PersonUrls extends Google_Model
  3355. {
  3356. protected $internal_gapi_mappings = array(
  3357. );
  3358. public $label;
  3359. public $type;
  3360. public $value;
  3361. public function setLabel($label)
  3362. {
  3363. $this->label = $label;
  3364. }
  3365. public function getLabel()
  3366. {
  3367. return $this->label;
  3368. }
  3369. public function setType($type)
  3370. {
  3371. $this->type = $type;
  3372. }
  3373. public function getType()
  3374. {
  3375. return $this->type;
  3376. }
  3377. public function setValue($value)
  3378. {
  3379. $this->value = $value;
  3380. }
  3381. public function getValue()
  3382. {
  3383. return $this->value;
  3384. }
  3385. }
  3386. class Google_Service_Plus_Place extends Google_Model
  3387. {
  3388. protected $internal_gapi_mappings = array(
  3389. );
  3390. protected $addressType = 'Google_Service_Plus_PlaceAddress';
  3391. protected $addressDataType = '';
  3392. public $displayName;
  3393. public $id;
  3394. public $kind;
  3395. protected $positionType = 'Google_Service_Plus_PlacePosition';
  3396. protected $positionDataType = '';
  3397. public function setAddress(Google_Service_Plus_PlaceAddress $address)
  3398. {
  3399. $this->address = $address;
  3400. }
  3401. public function getAddress()
  3402. {
  3403. return $this->address;
  3404. }
  3405. public function setDisplayName($displayName)
  3406. {
  3407. $this->displayName = $displayName;
  3408. }
  3409. public function getDisplayName()
  3410. {
  3411. return $this->displayName;
  3412. }
  3413. public function setId($id)
  3414. {
  3415. $this->id = $id;
  3416. }
  3417. public function getId()
  3418. {
  3419. return $this->id;
  3420. }
  3421. public function setKind($kind)
  3422. {
  3423. $this->kind = $kind;
  3424. }
  3425. public function getKind()
  3426. {
  3427. return $this->kind;
  3428. }
  3429. public function setPosition(Google_Service_Plus_PlacePosition $position)
  3430. {
  3431. $this->position = $position;
  3432. }
  3433. public function getPosition()
  3434. {
  3435. return $this->position;
  3436. }
  3437. }
  3438. class Google_Service_Plus_PlaceAddress extends Google_Model
  3439. {
  3440. protected $internal_gapi_mappings = array(
  3441. );
  3442. public $formatted;
  3443. public function setFormatted($formatted)
  3444. {
  3445. $this->formatted = $formatted;
  3446. }
  3447. public function getFormatted()
  3448. {
  3449. return $this->formatted;
  3450. }
  3451. }
  3452. class Google_Service_Plus_PlacePosition extends Google_Model
  3453. {
  3454. protected $internal_gapi_mappings = array(
  3455. );
  3456. public $latitude;
  3457. public $longitude;
  3458. public function setLatitude($latitude)
  3459. {
  3460. $this->latitude = $latitude;
  3461. }
  3462. public function getLatitude()
  3463. {
  3464. return $this->latitude;
  3465. }
  3466. public function setLongitude($longitude)
  3467. {
  3468. $this->longitude = $longitude;
  3469. }
  3470. public function getLongitude()
  3471. {
  3472. return $this->longitude;
  3473. }
  3474. }
  3475. class Google_Service_Plus_PlusAclentryResource extends Google_Model
  3476. {
  3477. protected $internal_gapi_mappings = array(
  3478. );
  3479. public $displayName;
  3480. public $id;
  3481. public $type;
  3482. public function setDisplayName($displayName)
  3483. {
  3484. $this->displayName = $displayName;
  3485. }
  3486. public function getDisplayName()
  3487. {
  3488. return $this->displayName;
  3489. }
  3490. public function setId($id)
  3491. {
  3492. $this->id = $id;
  3493. }
  3494. public function getId()
  3495. {
  3496. return $this->id;
  3497. }
  3498. public function setType($type)
  3499. {
  3500. $this->type = $type;
  3501. }
  3502. public function getType()
  3503. {
  3504. return $this->type;
  3505. }
  3506. }