PageRenderTime 66ms CodeModel.GetById 30ms RepoModel.GetById 0ms app.codeStats 1ms

/config/google-api-php-bng/src/Google/Service/PlusDomains.php

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