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