PageRenderTime 57ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 1ms

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

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