| 1 |
<?php |
| 2 |
/* |
| 3 |
* Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 4 |
* use this file except in compliance with the License. You may obtain a copy of |
| 5 |
* the License at |
| 6 |
* |
| 7 |
* http://www.apache.org/licenses/LICENSE-2.0 |
| 8 |
* |
| 9 |
* Unless required by applicable law or agreed to in writing, software |
| 10 |
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 11 |
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 |
* License for the specific language governing permissions and limitations under |
| 13 |
* the License. |
| 14 |
*/ |
| 15 |
|
| 16 |
/** |
| 17 |
* Service definition for People (v1). |
| 18 |
* |
| 19 |
* <p> |
| 20 |
* The Google People API service gives access to information about profiles and |
| 21 |
* contacts.</p> |
| 22 |
* |
| 23 |
* <p> |
| 24 |
* For more information about this service, see the API |
| 25 |
* <a href="https://developers.google.com/people/" target="_blank">Documentation</a> |
| 26 |
* </p> |
| 27 |
* |
| 28 |
* @author Google, Inc. |
| 29 |
*/ |
| 30 |
class Google_Service_People extends Google_Service |
| 31 |
{ |
| 32 |
/** Manage your contacts. */ |
| 33 |
const CONTACTS = |
| 34 |
"https://www.googleapis.com/auth/contacts"; |
| 35 |
/** View your contacts. */ |
| 36 |
const CONTACTS_READONLY = |
| 37 |
"https://www.googleapis.com/auth/contacts.readonly"; |
| 38 |
/** Know your basic profile info and list of people in your circles.. */ |
| 39 |
const PLUS_LOGIN = |
| 40 |
"https://www.googleapis.com/auth/plus.login"; |
| 41 |
/** View your street addresses. */ |
| 42 |
const USER_ADDRESSES_READ = |
| 43 |
"https://www.googleapis.com/auth/user.addresses.read"; |
| 44 |
/** View your complete date of birth. */ |
| 45 |
const USER_BIRTHDAY_READ = |
| 46 |
"https://www.googleapis.com/auth/user.birthday.read"; |
| 47 |
/** View your email addresses. */ |
| 48 |
const USER_EMAILS_READ = |
| 49 |
"https://www.googleapis.com/auth/user.emails.read"; |
| 50 |
/** View your phone numbers. */ |
| 51 |
const USER_PHONENUMBERS_READ = |
| 52 |
"https://www.googleapis.com/auth/user.phonenumbers.read"; |
| 53 |
/** View your email address. */ |
| 54 |
const USERINFO_EMAIL = |
| 55 |
"https://www.googleapis.com/auth/userinfo.email"; |
| 56 |
/** View your basic profile info. */ |
| 57 |
const USERINFO_PROFILE = |
| 58 |
"https://www.googleapis.com/auth/userinfo.profile"; |
| 59 |
|
| 60 |
public $people; |
| 61 |
public $people_connections; |
| 62 |
|
| 63 |
|
| 64 |
/** |
| 65 |
* Constructs the internal representation of the People service. |
| 66 |
* |
| 67 |
* @param Google_Client $client |
| 68 |
*/ |
| 69 |
public function __construct(Google_Client $client) |
| 70 |
{ |
| 71 |
parent::__construct($client); |
| 72 |
$this->rootUrl = 'https://people.googleapis.com/'; |
| 73 |
$this->servicePath = ''; |
| 74 |
$this->version = 'v1'; |
| 75 |
$this->serviceName = 'people'; |
| 76 |
|
| 77 |
$this->people = new Google_Service_People_People_Resource( |
| 78 |
$this, |
| 79 |
$this->serviceName, |
| 80 |
'people', |
| 81 |
array( |
| 82 |
'methods' => array( |
| 83 |
'get' => array( |
| 84 |
'path' => 'v1/{+resourceName}', |
| 85 |
'httpMethod' => 'GET', |
| 86 |
'parameters' => array( |
| 87 |
'resourceName' => array( |
| 88 |
'location' => 'path', |
| 89 |
'type' => 'string', |
| 90 |
'required' => true, |
| 91 |
), |
| 92 |
'requestMask.includeField' => array( |
| 93 |
'location' => 'query', |
| 94 |
'type' => 'string', |
| 95 |
), |
| 96 |
), |
| 97 |
),'getBatchGet' => array( |
| 98 |
'path' => 'v1/people:batchGet', |
| 99 |
'httpMethod' => 'GET', |
| 100 |
'parameters' => array( |
| 101 |
'requestMask.includeField' => array( |
| 102 |
'location' => 'query', |
| 103 |
'type' => 'string', |
| 104 |
), |
| 105 |
'resourceNames' => array( |
| 106 |
'location' => 'query', |
| 107 |
'type' => 'string', |
| 108 |
'repeated' => true, |
| 109 |
), |
| 110 |
), |
| 111 |
), |
| 112 |
) |
| 113 |
) |
| 114 |
); |
| 115 |
$this->people_connections = new Google_Service_People_PeopleConnections_Resource( |
| 116 |
$this, |
| 117 |
$this->serviceName, |
| 118 |
'connections', |
| 119 |
array( |
| 120 |
'methods' => array( |
| 121 |
'list' => array( |
| 122 |
'path' => 'v1/{+resourceName}/connections', |
| 123 |
'httpMethod' => 'GET', |
| 124 |
'parameters' => array( |
| 125 |
'resourceName' => array( |
| 126 |
'location' => 'path', |
| 127 |
'type' => 'string', |
| 128 |
'required' => true, |
| 129 |
), |
| 130 |
'sortOrder' => array( |
| 131 |
'location' => 'query', |
| 132 |
'type' => 'string', |
| 133 |
), |
| 134 |
'syncToken' => array( |
| 135 |
'location' => 'query', |
| 136 |
'type' => 'string', |
| 137 |
), |
| 138 |
'pageSize' => array( |
| 139 |
'location' => 'query', |
| 140 |
'type' => 'integer', |
| 141 |
), |
| 142 |
'requestMask.includeField' => array( |
| 143 |
'location' => 'query', |
| 144 |
'type' => 'string', |
| 145 |
), |
| 146 |
'pageToken' => array( |
| 147 |
'location' => 'query', |
| 148 |
'type' => 'string', |
| 149 |
), |
| 150 |
), |
| 151 |
), |
| 152 |
) |
| 153 |
) |
| 154 |
); |
| 155 |
} |
| 156 |
} |
| 157 |
|
| 158 |
|
| 159 |
/** |
| 160 |
* The "people" collection of methods. |
| 161 |
* Typical usage is: |
| 162 |
* <code> |
| 163 |
* $peopleService = new Google_Service_People(...); |
| 164 |
* $people = $peopleService->people; |
| 165 |
* </code> |
| 166 |
*/ |
| 167 |
class Google_Service_People_People_Resource extends Google_Service_Resource |
| 168 |
{ |
| 169 |
|
| 170 |
/** |
| 171 |
* Provides information about a person resource for a resource name. Use |
| 172 |
* `people/me` to indicate the authenticated user. (people.get) |
| 173 |
* |
| 174 |
* @param string $resourceName The resource name of the person to provide |
| 175 |
* information about. |
| 176 |
* |
| 177 |
* - To get information about the authenticated user, specify `people/me`. - To |
| 178 |
* get information about any user, specify the resource name that identifies |
| 179 |
* the user, such as the resource names returned by |
| 180 |
* [`people.connections.list`](/people/api/rest/v1/people.connections/list). |
| 181 |
* @param array $optParams Optional parameters. |
| 182 |
* |
| 183 |
* @opt_param string requestMask.includeField Comma-separated list of fields to |
| 184 |
* be included in the response. Omitting this field will include all fields. |
| 185 |
* Each path should start with `person.`: for example, `person.names` or |
| 186 |
* `person.photos`. |
| 187 |
* @return Google_Service_People_Person |
| 188 |
*/ |
| 189 |
public function get($resourceName, $optParams = array()) |
| 190 |
{ |
| 191 |
$params = array('resourceName' => $resourceName); |
| 192 |
$params = array_merge($params, $optParams); |
| 193 |
return $this->call('get', array($params), "Google_Service_People_Person"); |
| 194 |
} |
| 195 |
|
| 196 |
/** |
| 197 |
* Provides information about a list of specific people by specifying a list of |
| 198 |
* requested resource names. Use `people/me` to indicate the authenticated user. |
| 199 |
* (people.getBatchGet) |
| 200 |
* |
| 201 |
* @param array $optParams Optional parameters. |
| 202 |
* |
| 203 |
* @opt_param string requestMask.includeField Comma-separated list of fields to |
| 204 |
* be included in the response. Omitting this field will include all fields. |
| 205 |
* Each path should start with `person.`: for example, `person.names` or |
| 206 |
* `person.photos`. |
| 207 |
* @opt_param string resourceNames The resource name, such as one returned by |
| 208 |
* [`people.connections.list`](/people/api/rest/v1/people.connections/list), of |
| 209 |
* one of the people to provide information about. You can include this |
| 210 |
* parameter up to 50 times in one request. |
| 211 |
* @return Google_Service_People_GetPeopleResponse |
| 212 |
*/ |
| 213 |
public function getBatchGet($optParams = array()) |
| 214 |
{ |
| 215 |
$params = array(); |
| 216 |
$params = array_merge($params, $optParams); |
| 217 |
return $this->call('getBatchGet', array($params), "Google_Service_People_GetPeopleResponse"); |
| 218 |
} |
| 219 |
} |
| 220 |
|
| 221 |
/** |
| 222 |
* The "connections" collection of methods. |
| 223 |
* Typical usage is: |
| 224 |
* <code> |
| 225 |
* $peopleService = new Google_Service_People(...); |
| 226 |
* $connections = $peopleService->connections; |
| 227 |
* </code> |
| 228 |
*/ |
| 229 |
class Google_Service_People_PeopleConnections_Resource extends Google_Service_Resource |
| 230 |
{ |
| 231 |
|
| 232 |
/** |
| 233 |
* Provides a list of the authenticated user's contacts merged with any linked |
| 234 |
* profiles. (connections.listPeopleConnections) |
| 235 |
* |
| 236 |
* @param string $resourceName The resource name to return connections for. Only |
| 237 |
* `people/me` is valid. |
| 238 |
* @param array $optParams Optional parameters. |
| 239 |
* |
| 240 |
* @opt_param string sortOrder The order in which the connections should be |
| 241 |
* sorted. Defaults to `LAST_MODIFIED_ASCENDING`. |
| 242 |
* @opt_param string syncToken A sync token, returned by a previous call to |
| 243 |
* `people.connections.list`. Only resources changed since the sync token was |
| 244 |
* created are returned. |
| 245 |
* @opt_param int pageSize The number of connections to include in the response. |
| 246 |
* Valid values are between 1 and 500, inclusive. Defaults to 100. |
| 247 |
* @opt_param string requestMask.includeField Comma-separated list of fields to |
| 248 |
* be included in the response. Omitting this field will include all fields. |
| 249 |
* Each path should start with `person.`: for example, `person.names` or |
| 250 |
* `person.photos`. |
| 251 |
* @opt_param string pageToken The token of the page to be returned. |
| 252 |
* @return Google_Service_People_ListConnectionsResponse |
| 253 |
*/ |
| 254 |
public function listPeopleConnections($resourceName, $optParams = array()) |
| 255 |
{ |
| 256 |
$params = array('resourceName' => $resourceName); |
| 257 |
$params = array_merge($params, $optParams); |
| 258 |
return $this->call('list', array($params), "Google_Service_People_ListConnectionsResponse"); |
| 259 |
} |
| 260 |
} |
| 261 |
|
| 262 |
|
| 263 |
|
| 264 |
|
| 265 |
class Google_Service_People_Address extends Google_Model |
| 266 |
{ |
| 267 |
protected $internal_gapi_mappings = array( |
| 268 |
); |
| 269 |
public $city; |
| 270 |
public $country; |
| 271 |
public $countryCode; |
| 272 |
public $extendedAddress; |
| 273 |
public $formattedType; |
| 274 |
public $formattedValue; |
| 275 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 276 |
protected $metadataDataType = ''; |
| 277 |
public $poBox; |
| 278 |
public $postalCode; |
| 279 |
public $region; |
| 280 |
public $streetAddress; |
| 281 |
public $type; |
| 282 |
|
| 283 |
|
| 284 |
public function setCity($city) |
| 285 |
{ |
| 286 |
$this->city = $city; |
| 287 |
} |
| 288 |
public function getCity() |
| 289 |
{ |
| 290 |
return $this->city; |
| 291 |
} |
| 292 |
public function setCountry($country) |
| 293 |
{ |
| 294 |
$this->country = $country; |
| 295 |
} |
| 296 |
public function getCountry() |
| 297 |
{ |
| 298 |
return $this->country; |
| 299 |
} |
| 300 |
public function setCountryCode($countryCode) |
| 301 |
{ |
| 302 |
$this->countryCode = $countryCode; |
| 303 |
} |
| 304 |
public function getCountryCode() |
| 305 |
{ |
| 306 |
return $this->countryCode; |
| 307 |
} |
| 308 |
public function setExtendedAddress($extendedAddress) |
| 309 |
{ |
| 310 |
$this->extendedAddress = $extendedAddress; |
| 311 |
} |
| 312 |
public function getExtendedAddress() |
| 313 |
{ |
| 314 |
return $this->extendedAddress; |
| 315 |
} |
| 316 |
public function setFormattedType($formattedType) |
| 317 |
{ |
| 318 |
$this->formattedType = $formattedType; |
| 319 |
} |
| 320 |
public function getFormattedType() |
| 321 |
{ |
| 322 |
return $this->formattedType; |
| 323 |
} |
| 324 |
public function setFormattedValue($formattedValue) |
| 325 |
{ |
| 326 |
$this->formattedValue = $formattedValue; |
| 327 |
} |
| 328 |
public function getFormattedValue() |
| 329 |
{ |
| 330 |
return $this->formattedValue; |
| 331 |
} |
| 332 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 333 |
{ |
| 334 |
$this->metadata = $metadata; |
| 335 |
} |
| 336 |
public function getMetadata() |
| 337 |
{ |
| 338 |
return $this->metadata; |
| 339 |
} |
| 340 |
public function setPoBox($poBox) |
| 341 |
{ |
| 342 |
$this->poBox = $poBox; |
| 343 |
} |
| 344 |
public function getPoBox() |
| 345 |
{ |
| 346 |
return $this->poBox; |
| 347 |
} |
| 348 |
public function setPostalCode($postalCode) |
| 349 |
{ |
| 350 |
$this->postalCode = $postalCode; |
| 351 |
} |
| 352 |
public function getPostalCode() |
| 353 |
{ |
| 354 |
return $this->postalCode; |
| 355 |
} |
| 356 |
public function setRegion($region) |
| 357 |
{ |
| 358 |
$this->region = $region; |
| 359 |
} |
| 360 |
public function getRegion() |
| 361 |
{ |
| 362 |
return $this->region; |
| 363 |
} |
| 364 |
public function setStreetAddress($streetAddress) |
| 365 |
{ |
| 366 |
$this->streetAddress = $streetAddress; |
| 367 |
} |
| 368 |
public function getStreetAddress() |
| 369 |
{ |
| 370 |
return $this->streetAddress; |
| 371 |
} |
| 372 |
public function setType($type) |
| 373 |
{ |
| 374 |
$this->type = $type; |
| 375 |
} |
| 376 |
public function getType() |
| 377 |
{ |
| 378 |
return $this->type; |
| 379 |
} |
| 380 |
} |
| 381 |
|
| 382 |
class Google_Service_People_Biography extends Google_Model |
| 383 |
{ |
| 384 |
protected $internal_gapi_mappings = array( |
| 385 |
); |
| 386 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 387 |
protected $metadataDataType = ''; |
| 388 |
public $value; |
| 389 |
|
| 390 |
|
| 391 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 392 |
{ |
| 393 |
$this->metadata = $metadata; |
| 394 |
} |
| 395 |
public function getMetadata() |
| 396 |
{ |
| 397 |
return $this->metadata; |
| 398 |
} |
| 399 |
public function setValue($value) |
| 400 |
{ |
| 401 |
$this->value = $value; |
| 402 |
} |
| 403 |
public function getValue() |
| 404 |
{ |
| 405 |
return $this->value; |
| 406 |
} |
| 407 |
} |
| 408 |
|
| 409 |
class Google_Service_People_Birthday extends Google_Model |
| 410 |
{ |
| 411 |
protected $internal_gapi_mappings = array( |
| 412 |
); |
| 413 |
protected $dateType = 'Google_Service_People_Date'; |
| 414 |
protected $dateDataType = ''; |
| 415 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 416 |
protected $metadataDataType = ''; |
| 417 |
public $text; |
| 418 |
|
| 419 |
|
| 420 |
public function setDate(Google_Service_People_Date $date) |
| 421 |
{ |
| 422 |
$this->date = $date; |
| 423 |
} |
| 424 |
public function getDate() |
| 425 |
{ |
| 426 |
return $this->date; |
| 427 |
} |
| 428 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 429 |
{ |
| 430 |
$this->metadata = $metadata; |
| 431 |
} |
| 432 |
public function getMetadata() |
| 433 |
{ |
| 434 |
return $this->metadata; |
| 435 |
} |
| 436 |
public function setText($text) |
| 437 |
{ |
| 438 |
$this->text = $text; |
| 439 |
} |
| 440 |
public function getText() |
| 441 |
{ |
| 442 |
return $this->text; |
| 443 |
} |
| 444 |
} |
| 445 |
|
| 446 |
class Google_Service_People_BraggingRights extends Google_Model |
| 447 |
{ |
| 448 |
protected $internal_gapi_mappings = array( |
| 449 |
); |
| 450 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 451 |
protected $metadataDataType = ''; |
| 452 |
public $value; |
| 453 |
|
| 454 |
|
| 455 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 456 |
{ |
| 457 |
$this->metadata = $metadata; |
| 458 |
} |
| 459 |
public function getMetadata() |
| 460 |
{ |
| 461 |
return $this->metadata; |
| 462 |
} |
| 463 |
public function setValue($value) |
| 464 |
{ |
| 465 |
$this->value = $value; |
| 466 |
} |
| 467 |
public function getValue() |
| 468 |
{ |
| 469 |
return $this->value; |
| 470 |
} |
| 471 |
} |
| 472 |
|
| 473 |
class Google_Service_People_ContactGroupMembership extends Google_Model |
| 474 |
{ |
| 475 |
protected $internal_gapi_mappings = array( |
| 476 |
); |
| 477 |
public $contactGroupId; |
| 478 |
|
| 479 |
|
| 480 |
public function setContactGroupId($contactGroupId) |
| 481 |
{ |
| 482 |
$this->contactGroupId = $contactGroupId; |
| 483 |
} |
| 484 |
public function getContactGroupId() |
| 485 |
{ |
| 486 |
return $this->contactGroupId; |
| 487 |
} |
| 488 |
} |
| 489 |
|
| 490 |
class Google_Service_People_CoverPhoto extends Google_Model |
| 491 |
{ |
| 492 |
protected $internal_gapi_mappings = array( |
| 493 |
); |
| 494 |
public $default; |
| 495 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 496 |
protected $metadataDataType = ''; |
| 497 |
public $url; |
| 498 |
|
| 499 |
|
| 500 |
public function setDefault($default) |
| 501 |
{ |
| 502 |
$this->default = $default; |
| 503 |
} |
| 504 |
public function getDefault() |
| 505 |
{ |
| 506 |
return $this->default; |
| 507 |
} |
| 508 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 509 |
{ |
| 510 |
$this->metadata = $metadata; |
| 511 |
} |
| 512 |
public function getMetadata() |
| 513 |
{ |
| 514 |
return $this->metadata; |
| 515 |
} |
| 516 |
public function setUrl($url) |
| 517 |
{ |
| 518 |
$this->url = $url; |
| 519 |
} |
| 520 |
public function getUrl() |
| 521 |
{ |
| 522 |
return $this->url; |
| 523 |
} |
| 524 |
} |
| 525 |
|
| 526 |
class Google_Service_People_Date extends Google_Model |
| 527 |
{ |
| 528 |
protected $internal_gapi_mappings = array( |
| 529 |
); |
| 530 |
public $day; |
| 531 |
public $month; |
| 532 |
public $year; |
| 533 |
|
| 534 |
|
| 535 |
public function setDay($day) |
| 536 |
{ |
| 537 |
$this->day = $day; |
| 538 |
} |
| 539 |
public function getDay() |
| 540 |
{ |
| 541 |
return $this->day; |
| 542 |
} |
| 543 |
public function setMonth($month) |
| 544 |
{ |
| 545 |
$this->month = $month; |
| 546 |
} |
| 547 |
public function getMonth() |
| 548 |
{ |
| 549 |
return $this->month; |
| 550 |
} |
| 551 |
public function setYear($year) |
| 552 |
{ |
| 553 |
$this->year = $year; |
| 554 |
} |
| 555 |
public function getYear() |
| 556 |
{ |
| 557 |
return $this->year; |
| 558 |
} |
| 559 |
} |
| 560 |
|
| 561 |
class Google_Service_People_DomainMembership extends Google_Model |
| 562 |
{ |
| 563 |
protected $internal_gapi_mappings = array( |
| 564 |
); |
| 565 |
public $inViewerDomain; |
| 566 |
|
| 567 |
|
| 568 |
public function setInViewerDomain($inViewerDomain) |
| 569 |
{ |
| 570 |
$this->inViewerDomain = $inViewerDomain; |
| 571 |
} |
| 572 |
public function getInViewerDomain() |
| 573 |
{ |
| 574 |
return $this->inViewerDomain; |
| 575 |
} |
| 576 |
} |
| 577 |
|
| 578 |
class Google_Service_People_EmailAddress extends Google_Model |
| 579 |
{ |
| 580 |
protected $internal_gapi_mappings = array( |
| 581 |
); |
| 582 |
public $formattedType; |
| 583 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 584 |
protected $metadataDataType = ''; |
| 585 |
public $type; |
| 586 |
public $value; |
| 587 |
|
| 588 |
|
| 589 |
public function setFormattedType($formattedType) |
| 590 |
{ |
| 591 |
$this->formattedType = $formattedType; |
| 592 |
} |
| 593 |
public function getFormattedType() |
| 594 |
{ |
| 595 |
return $this->formattedType; |
| 596 |
} |
| 597 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 598 |
{ |
| 599 |
$this->metadata = $metadata; |
| 600 |
} |
| 601 |
public function getMetadata() |
| 602 |
{ |
| 603 |
return $this->metadata; |
| 604 |
} |
| 605 |
public function setType($type) |
| 606 |
{ |
| 607 |
$this->type = $type; |
| 608 |
} |
| 609 |
public function getType() |
| 610 |
{ |
| 611 |
return $this->type; |
| 612 |
} |
| 613 |
public function setValue($value) |
| 614 |
{ |
| 615 |
$this->value = $value; |
| 616 |
} |
| 617 |
public function getValue() |
| 618 |
{ |
| 619 |
return $this->value; |
| 620 |
} |
| 621 |
} |
| 622 |
|
| 623 |
class Google_Service_People_Event extends Google_Model |
| 624 |
{ |
| 625 |
protected $internal_gapi_mappings = array( |
| 626 |
); |
| 627 |
protected $dateType = 'Google_Service_People_Date'; |
| 628 |
protected $dateDataType = ''; |
| 629 |
public $formattedType; |
| 630 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 631 |
protected $metadataDataType = ''; |
| 632 |
public $type; |
| 633 |
|
| 634 |
|
| 635 |
public function setDate(Google_Service_People_Date $date) |
| 636 |
{ |
| 637 |
$this->date = $date; |
| 638 |
} |
| 639 |
public function getDate() |
| 640 |
{ |
| 641 |
return $this->date; |
| 642 |
} |
| 643 |
public function setFormattedType($formattedType) |
| 644 |
{ |
| 645 |
$this->formattedType = $formattedType; |
| 646 |
} |
| 647 |
public function getFormattedType() |
| 648 |
{ |
| 649 |
return $this->formattedType; |
| 650 |
} |
| 651 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 652 |
{ |
| 653 |
$this->metadata = $metadata; |
| 654 |
} |
| 655 |
public function getMetadata() |
| 656 |
{ |
| 657 |
return $this->metadata; |
| 658 |
} |
| 659 |
public function setType($type) |
| 660 |
{ |
| 661 |
$this->type = $type; |
| 662 |
} |
| 663 |
public function getType() |
| 664 |
{ |
| 665 |
return $this->type; |
| 666 |
} |
| 667 |
} |
| 668 |
|
| 669 |
class Google_Service_People_FieldMetadata extends Google_Model |
| 670 |
{ |
| 671 |
protected $internal_gapi_mappings = array( |
| 672 |
); |
| 673 |
public $primary; |
| 674 |
protected $sourceType = 'Google_Service_People_Source'; |
| 675 |
protected $sourceDataType = ''; |
| 676 |
public $verified; |
| 677 |
|
| 678 |
|
| 679 |
public function setPrimary($primary) |
| 680 |
{ |
| 681 |
$this->primary = $primary; |
| 682 |
} |
| 683 |
public function getPrimary() |
| 684 |
{ |
| 685 |
return $this->primary; |
| 686 |
} |
| 687 |
public function setSource(Google_Service_People_Source $source) |
| 688 |
{ |
| 689 |
$this->source = $source; |
| 690 |
} |
| 691 |
public function getSource() |
| 692 |
{ |
| 693 |
return $this->source; |
| 694 |
} |
| 695 |
public function setVerified($verified) |
| 696 |
{ |
| 697 |
$this->verified = $verified; |
| 698 |
} |
| 699 |
public function getVerified() |
| 700 |
{ |
| 701 |
return $this->verified; |
| 702 |
} |
| 703 |
} |
| 704 |
|
| 705 |
class Google_Service_People_Gender extends Google_Model |
| 706 |
{ |
| 707 |
protected $internal_gapi_mappings = array( |
| 708 |
); |
| 709 |
public $formattedValue; |
| 710 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 711 |
protected $metadataDataType = ''; |
| 712 |
public $value; |
| 713 |
|
| 714 |
|
| 715 |
public function setFormattedValue($formattedValue) |
| 716 |
{ |
| 717 |
$this->formattedValue = $formattedValue; |
| 718 |
} |
| 719 |
public function getFormattedValue() |
| 720 |
{ |
| 721 |
return $this->formattedValue; |
| 722 |
} |
| 723 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 724 |
{ |
| 725 |
$this->metadata = $metadata; |
| 726 |
} |
| 727 |
public function getMetadata() |
| 728 |
{ |
| 729 |
return $this->metadata; |
| 730 |
} |
| 731 |
public function setValue($value) |
| 732 |
{ |
| 733 |
$this->value = $value; |
| 734 |
} |
| 735 |
public function getValue() |
| 736 |
{ |
| 737 |
return $this->value; |
| 738 |
} |
| 739 |
} |
| 740 |
|
| 741 |
class Google_Service_People_GetPeopleResponse extends Google_Collection |
| 742 |
{ |
| 743 |
protected $collection_key = 'responses'; |
| 744 |
protected $internal_gapi_mappings = array( |
| 745 |
); |
| 746 |
protected $responsesType = 'Google_Service_People_PersonResponse'; |
| 747 |
protected $responsesDataType = 'array'; |
| 748 |
|
| 749 |
|
| 750 |
public function setResponses($responses) |
| 751 |
{ |
| 752 |
$this->responses = $responses; |
| 753 |
} |
| 754 |
public function getResponses() |
| 755 |
{ |
| 756 |
return $this->responses; |
| 757 |
} |
| 758 |
} |
| 759 |
|
| 760 |
class Google_Service_People_ImClient extends Google_Model |
| 761 |
{ |
| 762 |
protected $internal_gapi_mappings = array( |
| 763 |
); |
| 764 |
public $formattedProtocol; |
| 765 |
public $formattedType; |
| 766 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 767 |
protected $metadataDataType = ''; |
| 768 |
public $protocol; |
| 769 |
public $type; |
| 770 |
public $username; |
| 771 |
|
| 772 |
|
| 773 |
public function setFormattedProtocol($formattedProtocol) |
| 774 |
{ |
| 775 |
$this->formattedProtocol = $formattedProtocol; |
| 776 |
} |
| 777 |
public function getFormattedProtocol() |
| 778 |
{ |
| 779 |
return $this->formattedProtocol; |
| 780 |
} |
| 781 |
public function setFormattedType($formattedType) |
| 782 |
{ |
| 783 |
$this->formattedType = $formattedType; |
| 784 |
} |
| 785 |
public function getFormattedType() |
| 786 |
{ |
| 787 |
return $this->formattedType; |
| 788 |
} |
| 789 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 790 |
{ |
| 791 |
$this->metadata = $metadata; |
| 792 |
} |
| 793 |
public function getMetadata() |
| 794 |
{ |
| 795 |
return $this->metadata; |
| 796 |
} |
| 797 |
public function setProtocol($protocol) |
| 798 |
{ |
| 799 |
$this->protocol = $protocol; |
| 800 |
} |
| 801 |
public function getProtocol() |
| 802 |
{ |
| 803 |
return $this->protocol; |
| 804 |
} |
| 805 |
public function setType($type) |
| 806 |
{ |
| 807 |
$this->type = $type; |
| 808 |
} |
| 809 |
public function getType() |
| 810 |
{ |
| 811 |
return $this->type; |
| 812 |
} |
| 813 |
public function setUsername($username) |
| 814 |
{ |
| 815 |
$this->username = $username; |
| 816 |
} |
| 817 |
public function getUsername() |
| 818 |
{ |
| 819 |
return $this->username; |
| 820 |
} |
| 821 |
} |
| 822 |
|
| 823 |
class Google_Service_People_Interest extends Google_Model |
| 824 |
{ |
| 825 |
protected $internal_gapi_mappings = array( |
| 826 |
); |
| 827 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 828 |
protected $metadataDataType = ''; |
| 829 |
public $value; |
| 830 |
|
| 831 |
|
| 832 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 833 |
{ |
| 834 |
$this->metadata = $metadata; |
| 835 |
} |
| 836 |
public function getMetadata() |
| 837 |
{ |
| 838 |
return $this->metadata; |
| 839 |
} |
| 840 |
public function setValue($value) |
| 841 |
{ |
| 842 |
$this->value = $value; |
| 843 |
} |
| 844 |
public function getValue() |
| 845 |
{ |
| 846 |
return $this->value; |
| 847 |
} |
| 848 |
} |
| 849 |
|
| 850 |
class Google_Service_People_ListConnectionsResponse extends Google_Collection |
| 851 |
{ |
| 852 |
protected $collection_key = 'connections'; |
| 853 |
protected $internal_gapi_mappings = array( |
| 854 |
); |
| 855 |
protected $connectionsType = 'Google_Service_People_Person'; |
| 856 |
protected $connectionsDataType = 'array'; |
| 857 |
public $nextPageToken; |
| 858 |
public $nextSyncToken; |
| 859 |
|
| 860 |
|
| 861 |
public function setConnections($connections) |
| 862 |
{ |
| 863 |
$this->connections = $connections; |
| 864 |
} |
| 865 |
public function getConnections() |
| 866 |
{ |
| 867 |
return $this->connections; |
| 868 |
} |
| 869 |
public function setNextPageToken($nextPageToken) |
| 870 |
{ |
| 871 |
$this->nextPageToken = $nextPageToken; |
| 872 |
} |
| 873 |
public function getNextPageToken() |
| 874 |
{ |
| 875 |
return $this->nextPageToken; |
| 876 |
} |
| 877 |
public function setNextSyncToken($nextSyncToken) |
| 878 |
{ |
| 879 |
$this->nextSyncToken = $nextSyncToken; |
| 880 |
} |
| 881 |
public function getNextSyncToken() |
| 882 |
{ |
| 883 |
return $this->nextSyncToken; |
| 884 |
} |
| 885 |
} |
| 886 |
|
| 887 |
class Google_Service_People_Locale extends Google_Model |
| 888 |
{ |
| 889 |
protected $internal_gapi_mappings = array( |
| 890 |
); |
| 891 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 892 |
protected $metadataDataType = ''; |
| 893 |
public $value; |
| 894 |
|
| 895 |
|
| 896 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 897 |
{ |
| 898 |
$this->metadata = $metadata; |
| 899 |
} |
| 900 |
public function getMetadata() |
| 901 |
{ |
| 902 |
return $this->metadata; |
| 903 |
} |
| 904 |
public function setValue($value) |
| 905 |
{ |
| 906 |
$this->value = $value; |
| 907 |
} |
| 908 |
public function getValue() |
| 909 |
{ |
| 910 |
return $this->value; |
| 911 |
} |
| 912 |
} |
| 913 |
|
| 914 |
class Google_Service_People_Membership extends Google_Model |
| 915 |
{ |
| 916 |
protected $internal_gapi_mappings = array( |
| 917 |
); |
| 918 |
protected $contactGroupMembershipType = 'Google_Service_People_ContactGroupMembership'; |
| 919 |
protected $contactGroupMembershipDataType = ''; |
| 920 |
protected $domainMembershipType = 'Google_Service_People_DomainMembership'; |
| 921 |
protected $domainMembershipDataType = ''; |
| 922 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 923 |
protected $metadataDataType = ''; |
| 924 |
|
| 925 |
|
| 926 |
public function setContactGroupMembership(Google_Service_People_ContactGroupMembership $contactGroupMembership) |
| 927 |
{ |
| 928 |
$this->contactGroupMembership = $contactGroupMembership; |
| 929 |
} |
| 930 |
public function getContactGroupMembership() |
| 931 |
{ |
| 932 |
return $this->contactGroupMembership; |
| 933 |
} |
| 934 |
public function setDomainMembership(Google_Service_People_DomainMembership $domainMembership) |
| 935 |
{ |
| 936 |
$this->domainMembership = $domainMembership; |
| 937 |
} |
| 938 |
public function getDomainMembership() |
| 939 |
{ |
| 940 |
return $this->domainMembership; |
| 941 |
} |
| 942 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 943 |
{ |
| 944 |
$this->metadata = $metadata; |
| 945 |
} |
| 946 |
public function getMetadata() |
| 947 |
{ |
| 948 |
return $this->metadata; |
| 949 |
} |
| 950 |
} |
| 951 |
|
| 952 |
class Google_Service_People_Name extends Google_Model |
| 953 |
{ |
| 954 |
protected $internal_gapi_mappings = array( |
| 955 |
); |
| 956 |
public $displayName; |
| 957 |
public $familyName; |
| 958 |
public $givenName; |
| 959 |
public $honorificPrefix; |
| 960 |
public $honorificSuffix; |
| 961 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 962 |
protected $metadataDataType = ''; |
| 963 |
public $middleName; |
| 964 |
public $phoneticFamilyName; |
| 965 |
public $phoneticGivenName; |
| 966 |
public $phoneticHonorificPrefix; |
| 967 |
public $phoneticHonorificSuffix; |
| 968 |
public $phoneticMiddleName; |
| 969 |
|
| 970 |
|
| 971 |
public function setDisplayName($displayName) |
| 972 |
{ |
| 973 |
$this->displayName = $displayName; |
| 974 |
} |
| 975 |
public function getDisplayName() |
| 976 |
{ |
| 977 |
return $this->displayName; |
| 978 |
} |
| 979 |
public function setFamilyName($familyName) |
| 980 |
{ |
| 981 |
$this->familyName = $familyName; |
| 982 |
} |
| 983 |
public function getFamilyName() |
| 984 |
{ |
| 985 |
return $this->familyName; |
| 986 |
} |
| 987 |
public function setGivenName($givenName) |
| 988 |
{ |
| 989 |
$this->givenName = $givenName; |
| 990 |
} |
| 991 |
public function getGivenName() |
| 992 |
{ |
| 993 |
return $this->givenName; |
| 994 |
} |
| 995 |
public function setHonorificPrefix($honorificPrefix) |
| 996 |
{ |
| 997 |
$this->honorificPrefix = $honorificPrefix; |
| 998 |
} |
| 999 |
public function getHonorificPrefix() |
| 1000 |
{ |
| 1001 |
return $this->honorificPrefix; |
| 1002 |
} |
| 1003 |
public function setHonorificSuffix($honorificSuffix) |
| 1004 |
{ |
| 1005 |
$this->honorificSuffix = $honorificSuffix; |
| 1006 |
} |
| 1007 |
public function getHonorificSuffix() |
| 1008 |
{ |
| 1009 |
return $this->honorificSuffix; |
| 1010 |
} |
| 1011 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 1012 |
{ |
| 1013 |
$this->metadata = $metadata; |
| 1014 |
} |
| 1015 |
public function getMetadata() |
| 1016 |
{ |
| 1017 |
return $this->metadata; |
| 1018 |
} |
| 1019 |
public function setMiddleName($middleName) |
| 1020 |
{ |
| 1021 |
$this->middleName = $middleName; |
| 1022 |
} |
| 1023 |
public function getMiddleName() |
| 1024 |
{ |
| 1025 |
return $this->middleName; |
| 1026 |
} |
| 1027 |
public function setPhoneticFamilyName($phoneticFamilyName) |
| 1028 |
{ |
| 1029 |
$this->phoneticFamilyName = $phoneticFamilyName; |
| 1030 |
} |
| 1031 |
public function getPhoneticFamilyName() |
| 1032 |
{ |
| 1033 |
return $this->phoneticFamilyName; |
| 1034 |
} |
| 1035 |
public function setPhoneticGivenName($phoneticGivenName) |
| 1036 |
{ |
| 1037 |
$this->phoneticGivenName = $phoneticGivenName; |
| 1038 |
} |
| 1039 |
public function getPhoneticGivenName() |
| 1040 |
{ |
| 1041 |
return $this->phoneticGivenName; |
| 1042 |
} |
| 1043 |
public function setPhoneticHonorificPrefix($phoneticHonorificPrefix) |
| 1044 |
{ |
| 1045 |
$this->phoneticHonorificPrefix = $phoneticHonorificPrefix; |
| 1046 |
} |
| 1047 |
public function getPhoneticHonorificPrefix() |
| 1048 |
{ |
| 1049 |
return $this->phoneticHonorificPrefix; |
| 1050 |
} |
| 1051 |
public function setPhoneticHonorificSuffix($phoneticHonorificSuffix) |
| 1052 |
{ |
| 1053 |
$this->phoneticHonorificSuffix = $phoneticHonorificSuffix; |
| 1054 |
} |
| 1055 |
public function getPhoneticHonorificSuffix() |
| 1056 |
{ |
| 1057 |
return $this->phoneticHonorificSuffix; |
| 1058 |
} |
| 1059 |
public function setPhoneticMiddleName($phoneticMiddleName) |
| 1060 |
{ |
| 1061 |
$this->phoneticMiddleName = $phoneticMiddleName; |
| 1062 |
} |
| 1063 |
public function getPhoneticMiddleName() |
| 1064 |
{ |
| 1065 |
return $this->phoneticMiddleName; |
| 1066 |
} |
| 1067 |
} |
| 1068 |
|
| 1069 |
class Google_Service_People_Nickname extends Google_Model |
| 1070 |
{ |
| 1071 |
protected $internal_gapi_mappings = array( |
| 1072 |
); |
| 1073 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 1074 |
protected $metadataDataType = ''; |
| 1075 |
public $type; |
| 1076 |
public $value; |
| 1077 |
|
| 1078 |
|
| 1079 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 1080 |
{ |
| 1081 |
$this->metadata = $metadata; |
| 1082 |
} |
| 1083 |
public function getMetadata() |
| 1084 |
{ |
| 1085 |
return $this->metadata; |
| 1086 |
} |
| 1087 |
public function setType($type) |
| 1088 |
{ |
| 1089 |
$this->type = $type; |
| 1090 |
} |
| 1091 |
public function getType() |
| 1092 |
{ |
| 1093 |
return $this->type; |
| 1094 |
} |
| 1095 |
public function setValue($value) |
| 1096 |
{ |
| 1097 |
$this->value = $value; |
| 1098 |
} |
| 1099 |
public function getValue() |
| 1100 |
{ |
| 1101 |
return $this->value; |
| 1102 |
} |
| 1103 |
} |
| 1104 |
|
| 1105 |
class Google_Service_People_Occupation extends Google_Model |
| 1106 |
{ |
| 1107 |
protected $internal_gapi_mappings = array( |
| 1108 |
); |
| 1109 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 1110 |
protected $metadataDataType = ''; |
| 1111 |
public $value; |
| 1112 |
|
| 1113 |
|
| 1114 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 1115 |
{ |
| 1116 |
$this->metadata = $metadata; |
| 1117 |
} |
| 1118 |
public function getMetadata() |
| 1119 |
{ |
| 1120 |
return $this->metadata; |
| 1121 |
} |
| 1122 |
public function setValue($value) |
| 1123 |
{ |
| 1124 |
$this->value = $value; |
| 1125 |
} |
| 1126 |
public function getValue() |
| 1127 |
{ |
| 1128 |
return $this->value; |
| 1129 |
} |
| 1130 |
} |
| 1131 |
|
| 1132 |
class Google_Service_People_Organization extends Google_Model |
| 1133 |
{ |
| 1134 |
protected $internal_gapi_mappings = array( |
| 1135 |
); |
| 1136 |
public $current; |
| 1137 |
public $department; |
| 1138 |
public $domain; |
| 1139 |
protected $endDateType = 'Google_Service_People_Date'; |
| 1140 |
protected $endDateDataType = ''; |
| 1141 |
public $formattedType; |
| 1142 |
public $jobDescription; |
| 1143 |
public $location; |
| 1144 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 1145 |
protected $metadataDataType = ''; |
| 1146 |
public $name; |
| 1147 |
public $phoneticName; |
| 1148 |
protected $startDateType = 'Google_Service_People_Date'; |
| 1149 |
protected $startDateDataType = ''; |
| 1150 |
public $symbol; |
| 1151 |
public $title; |
| 1152 |
public $type; |
| 1153 |
|
| 1154 |
|
| 1155 |
public function setCurrent($current) |
| 1156 |
{ |
| 1157 |
$this->current = $current; |
| 1158 |
} |
| 1159 |
public function getCurrent() |
| 1160 |
{ |
| 1161 |
return $this->current; |
| 1162 |
} |
| 1163 |
public function setDepartment($department) |
| 1164 |
{ |
| 1165 |
$this->department = $department; |
| 1166 |
} |
| 1167 |
public function getDepartment() |
| 1168 |
{ |
| 1169 |
return $this->department; |
| 1170 |
} |
| 1171 |
public function setDomain($domain) |
| 1172 |
{ |
| 1173 |
$this->domain = $domain; |
| 1174 |
} |
| 1175 |
public function getDomain() |
| 1176 |
{ |
| 1177 |
return $this->domain; |
| 1178 |
} |
| 1179 |
public function setEndDate(Google_Service_People_Date $endDate) |
| 1180 |
{ |
| 1181 |
$this->endDate = $endDate; |
| 1182 |
} |
| 1183 |
public function getEndDate() |
| 1184 |
{ |
| 1185 |
return $this->endDate; |
| 1186 |
} |
| 1187 |
public function setFormattedType($formattedType) |
| 1188 |
{ |
| 1189 |
$this->formattedType = $formattedType; |
| 1190 |
} |
| 1191 |
public function getFormattedType() |
| 1192 |
{ |
| 1193 |
return $this->formattedType; |
| 1194 |
} |
| 1195 |
public function setJobDescription($jobDescription) |
| 1196 |
{ |
| 1197 |
$this->jobDescription = $jobDescription; |
| 1198 |
} |
| 1199 |
public function getJobDescription() |
| 1200 |
{ |
| 1201 |
return $this->jobDescription; |
| 1202 |
} |
| 1203 |
public function setLocation($location) |
| 1204 |
{ |
| 1205 |
$this->location = $location; |
| 1206 |
} |
| 1207 |
public function getLocation() |
| 1208 |
{ |
| 1209 |
return $this->location; |
| 1210 |
} |
| 1211 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 1212 |
{ |
| 1213 |
$this->metadata = $metadata; |
| 1214 |
} |
| 1215 |
public function getMetadata() |
| 1216 |
{ |
| 1217 |
return $this->metadata; |
| 1218 |
} |
| 1219 |
public function setName($name) |
| 1220 |
{ |
| 1221 |
$this->name = $name; |
| 1222 |
} |
| 1223 |
public function getName() |
| 1224 |
{ |
| 1225 |
return $this->name; |
| 1226 |
} |
| 1227 |
public function setPhoneticName($phoneticName) |
| 1228 |
{ |
| 1229 |
$this->phoneticName = $phoneticName; |
| 1230 |
} |
| 1231 |
public function getPhoneticName() |
| 1232 |
{ |
| 1233 |
return $this->phoneticName; |
| 1234 |
} |
| 1235 |
public function setStartDate(Google_Service_People_Date $startDate) |
| 1236 |
{ |
| 1237 |
$this->startDate = $startDate; |
| 1238 |
} |
| 1239 |
public function getStartDate() |
| 1240 |
{ |
| 1241 |
return $this->startDate; |
| 1242 |
} |
| 1243 |
public function setSymbol($symbol) |
| 1244 |
{ |
| 1245 |
$this->symbol = $symbol; |
| 1246 |
} |
| 1247 |
public function getSymbol() |
| 1248 |
{ |
| 1249 |
return $this->symbol; |
| 1250 |
} |
| 1251 |
public function setTitle($title) |
| 1252 |
{ |
| 1253 |
$this->title = $title; |
| 1254 |
} |
| 1255 |
public function getTitle() |
| 1256 |
{ |
| 1257 |
return $this->title; |
| 1258 |
} |
| 1259 |
public function setType($type) |
| 1260 |
{ |
| 1261 |
$this->type = $type; |
| 1262 |
} |
| 1263 |
public function getType() |
| 1264 |
{ |
| 1265 |
return $this->type; |
| 1266 |
} |
| 1267 |
} |
| 1268 |
|
| 1269 |
class Google_Service_People_Person extends Google_Collection |
| 1270 |
{ |
| 1271 |
protected $collection_key = 'urls'; |
| 1272 |
protected $internal_gapi_mappings = array( |
| 1273 |
); |
| 1274 |
protected $addressesType = 'Google_Service_People_Address'; |
| 1275 |
protected $addressesDataType = 'array'; |
| 1276 |
public $ageRange; |
| 1277 |
protected $biographiesType = 'Google_Service_People_Biography'; |
| 1278 |
protected $biographiesDataType = 'array'; |
| 1279 |
protected $birthdaysType = 'Google_Service_People_Birthday'; |
| 1280 |
protected $birthdaysDataType = 'array'; |
| 1281 |
protected $braggingRightsType = 'Google_Service_People_BraggingRights'; |
| 1282 |
protected $braggingRightsDataType = 'array'; |
| 1283 |
protected $coverPhotosType = 'Google_Service_People_CoverPhoto'; |
| 1284 |
protected $coverPhotosDataType = 'array'; |
| 1285 |
protected $emailAddressesType = 'Google_Service_People_EmailAddress'; |
| 1286 |
protected $emailAddressesDataType = 'array'; |
| 1287 |
public $etag; |
| 1288 |
protected $eventsType = 'Google_Service_People_Event'; |
| 1289 |
protected $eventsDataType = 'array'; |
| 1290 |
protected $gendersType = 'Google_Service_People_Gender'; |
| 1291 |
protected $gendersDataType = 'array'; |
| 1292 |
protected $imClientsType = 'Google_Service_People_ImClient'; |
| 1293 |
protected $imClientsDataType = 'array'; |
| 1294 |
protected $interestsType = 'Google_Service_People_Interest'; |
| 1295 |
protected $interestsDataType = 'array'; |
| 1296 |
protected $localesType = 'Google_Service_People_Locale'; |
| 1297 |
protected $localesDataType = 'array'; |
| 1298 |
protected $membershipsType = 'Google_Service_People_Membership'; |
| 1299 |
protected $membershipsDataType = 'array'; |
| 1300 |
protected $metadataType = 'Google_Service_People_PersonMetadata'; |
| 1301 |
protected $metadataDataType = ''; |
| 1302 |
protected $namesType = 'Google_Service_People_Name'; |
| 1303 |
protected $namesDataType = 'array'; |
| 1304 |
protected $nicknamesType = 'Google_Service_People_Nickname'; |
| 1305 |
protected $nicknamesDataType = 'array'; |
| 1306 |
protected $occupationsType = 'Google_Service_People_Occupation'; |
| 1307 |
protected $occupationsDataType = 'array'; |
| 1308 |
protected $organizationsType = 'Google_Service_People_Organization'; |
| 1309 |
protected $organizationsDataType = 'array'; |
| 1310 |
protected $phoneNumbersType = 'Google_Service_People_PhoneNumber'; |
| 1311 |
protected $phoneNumbersDataType = 'array'; |
| 1312 |
protected $photosType = 'Google_Service_People_Photo'; |
| 1313 |
protected $photosDataType = 'array'; |
| 1314 |
protected $relationsType = 'Google_Service_People_Relation'; |
| 1315 |
protected $relationsDataType = 'array'; |
| 1316 |
protected $relationshipInterestsType = 'Google_Service_People_RelationshipInterest'; |
| 1317 |
protected $relationshipInterestsDataType = 'array'; |
| 1318 |
protected $relationshipStatusesType = 'Google_Service_People_RelationshipStatus'; |
| 1319 |
protected $relationshipStatusesDataType = 'array'; |
| 1320 |
protected $residencesType = 'Google_Service_People_Residence'; |
| 1321 |
protected $residencesDataType = 'array'; |
| 1322 |
public $resourceName; |
| 1323 |
protected $skillsType = 'Google_Service_People_Skill'; |
| 1324 |
protected $skillsDataType = 'array'; |
| 1325 |
protected $taglinesType = 'Google_Service_People_Tagline'; |
| 1326 |
protected $taglinesDataType = 'array'; |
| 1327 |
protected $urlsType = 'Google_Service_People_Url'; |
| 1328 |
protected $urlsDataType = 'array'; |
| 1329 |
|
| 1330 |
|
| 1331 |
public function setAddresses($addresses) |
| 1332 |
{ |
| 1333 |
$this->addresses = $addresses; |
| 1334 |
} |
| 1335 |
public function getAddresses() |
| 1336 |
{ |
| 1337 |
return $this->addresses; |
| 1338 |
} |
| 1339 |
public function setAgeRange($ageRange) |
| 1340 |
{ |
| 1341 |
$this->ageRange = $ageRange; |
| 1342 |
} |
| 1343 |
public function getAgeRange() |
| 1344 |
{ |
| 1345 |
return $this->ageRange; |
| 1346 |
} |
| 1347 |
public function setBiographies($biographies) |
| 1348 |
{ |
| 1349 |
$this->biographies = $biographies; |
| 1350 |
} |
| 1351 |
public function getBiographies() |
| 1352 |
{ |
| 1353 |
return $this->biographies; |
| 1354 |
} |
| 1355 |
public function setBirthdays($birthdays) |
| 1356 |
{ |
| 1357 |
$this->birthdays = $birthdays; |
| 1358 |
} |
| 1359 |
public function getBirthdays() |
| 1360 |
{ |
| 1361 |
return $this->birthdays; |
| 1362 |
} |
| 1363 |
public function setBraggingRights($braggingRights) |
| 1364 |
{ |
| 1365 |
$this->braggingRights = $braggingRights; |
| 1366 |
} |
| 1367 |
public function getBraggingRights() |
| 1368 |
{ |
| 1369 |
return $this->braggingRights; |
| 1370 |
} |
| 1371 |
public function setCoverPhotos($coverPhotos) |
| 1372 |
{ |
| 1373 |
$this->coverPhotos = $coverPhotos; |
| 1374 |
} |
| 1375 |
public function getCoverPhotos() |
| 1376 |
{ |
| 1377 |
return $this->coverPhotos; |
| 1378 |
} |
| 1379 |
public function setEmailAddresses($emailAddresses) |
| 1380 |
{ |
| 1381 |
$this->emailAddresses = $emailAddresses; |
| 1382 |
} |
| 1383 |
public function getEmailAddresses() |
| 1384 |
{ |
| 1385 |
return $this->emailAddresses; |
| 1386 |
} |
| 1387 |
public function setEtag($etag) |
| 1388 |
{ |
| 1389 |
$this->etag = $etag; |
| 1390 |
} |
| 1391 |
public function getEtag() |
| 1392 |
{ |
| 1393 |
return $this->etag; |
| 1394 |
} |
| 1395 |
public function setEvents($events) |
| 1396 |
{ |
| 1397 |
$this->events = $events; |
| 1398 |
} |
| 1399 |
public function getEvents() |
| 1400 |
{ |
| 1401 |
return $this->events; |
| 1402 |
} |
| 1403 |
public function setGenders($genders) |
| 1404 |
{ |
| 1405 |
$this->genders = $genders; |
| 1406 |
} |
| 1407 |
public function getGenders() |
| 1408 |
{ |
| 1409 |
return $this->genders; |
| 1410 |
} |
| 1411 |
public function setImClients($imClients) |
| 1412 |
{ |
| 1413 |
$this->imClients = $imClients; |
| 1414 |
} |
| 1415 |
public function getImClients() |
| 1416 |
{ |
| 1417 |
return $this->imClients; |
| 1418 |
} |
| 1419 |
public function setInterests($interests) |
| 1420 |
{ |
| 1421 |
$this->interests = $interests; |
| 1422 |
} |
| 1423 |
public function getInterests() |
| 1424 |
{ |
| 1425 |
return $this->interests; |
| 1426 |
} |
| 1427 |
public function setLocales($locales) |
| 1428 |
{ |
| 1429 |
$this->locales = $locales; |
| 1430 |
} |
| 1431 |
public function getLocales() |
| 1432 |
{ |
| 1433 |
return $this->locales; |
| 1434 |
} |
| 1435 |
public function setMemberships($memberships) |
| 1436 |
{ |
| 1437 |
$this->memberships = $memberships; |
| 1438 |
} |
| 1439 |
public function getMemberships() |
| 1440 |
{ |
| 1441 |
return $this->memberships; |
| 1442 |
} |
| 1443 |
public function setMetadata(Google_Service_People_PersonMetadata $metadata) |
| 1444 |
{ |
| 1445 |
$this->metadata = $metadata; |
| 1446 |
} |
| 1447 |
public function getMetadata() |
| 1448 |
{ |
| 1449 |
return $this->metadata; |
| 1450 |
} |
| 1451 |
public function setNames($names) |
| 1452 |
{ |
| 1453 |
$this->names = $names; |
| 1454 |
} |
| 1455 |
public function getNames() |
| 1456 |
{ |
| 1457 |
return $this->names; |
| 1458 |
} |
| 1459 |
public function setNicknames($nicknames) |
| 1460 |
{ |
| 1461 |
$this->nicknames = $nicknames; |
| 1462 |
} |
| 1463 |
public function getNicknames() |
| 1464 |
{ |
| 1465 |
return $this->nicknames; |
| 1466 |
} |
| 1467 |
public function setOccupations($occupations) |
| 1468 |
{ |
| 1469 |
$this->occupations = $occupations; |
| 1470 |
} |
| 1471 |
public function getOccupations() |
| 1472 |
{ |
| 1473 |
return $this->occupations; |
| 1474 |
} |
| 1475 |
public function setOrganizations($organizations) |
| 1476 |
{ |
| 1477 |
$this->organizations = $organizations; |
| 1478 |
} |
| 1479 |
public function getOrganizations() |
| 1480 |
{ |
| 1481 |
return $this->organizations; |
| 1482 |
} |
| 1483 |
public function setPhoneNumbers($phoneNumbers) |
| 1484 |
{ |
| 1485 |
$this->phoneNumbers = $phoneNumbers; |
| 1486 |
} |
| 1487 |
public function getPhoneNumbers() |
| 1488 |
{ |
| 1489 |
return $this->phoneNumbers; |
| 1490 |
} |
| 1491 |
public function setPhotos($photos) |
| 1492 |
{ |
| 1493 |
$this->photos = $photos; |
| 1494 |
} |
| 1495 |
public function getPhotos() |
| 1496 |
{ |
| 1497 |
return $this->photos; |
| 1498 |
} |
| 1499 |
public function setRelations($relations) |
| 1500 |
{ |
| 1501 |
$this->relations = $relations; |
| 1502 |
} |
| 1503 |
public function getRelations() |
| 1504 |
{ |
| 1505 |
return $this->relations; |
| 1506 |
} |
| 1507 |
public function setRelationshipInterests($relationshipInterests) |
| 1508 |
{ |
| 1509 |
$this->relationshipInterests = $relationshipInterests; |
| 1510 |
} |
| 1511 |
public function getRelationshipInterests() |
| 1512 |
{ |
| 1513 |
return $this->relationshipInterests; |
| 1514 |
} |
| 1515 |
public function setRelationshipStatuses($relationshipStatuses) |
| 1516 |
{ |
| 1517 |
$this->relationshipStatuses = $relationshipStatuses; |
| 1518 |
} |
| 1519 |
public function getRelationshipStatuses() |
| 1520 |
{ |
| 1521 |
return $this->relationshipStatuses; |
| 1522 |
} |
| 1523 |
public function setResidences($residences) |
| 1524 |
{ |
| 1525 |
$this->residences = $residences; |
| 1526 |
} |
| 1527 |
public function getResidences() |
| 1528 |
{ |
| 1529 |
return $this->residences; |
| 1530 |
} |
| 1531 |
public function setResourceName($resourceName) |
| 1532 |
{ |
| 1533 |
$this->resourceName = $resourceName; |
| 1534 |
} |
| 1535 |
public function getResourceName() |
| 1536 |
{ |
| 1537 |
return $this->resourceName; |
| 1538 |
} |
| 1539 |
public function setSkills($skills) |
| 1540 |
{ |
| 1541 |
$this->skills = $skills; |
| 1542 |
} |
| 1543 |
public function getSkills() |
| 1544 |
{ |
| 1545 |
return $this->skills; |
| 1546 |
} |
| 1547 |
public function setTaglines($taglines) |
| 1548 |
{ |
| 1549 |
$this->taglines = $taglines; |
| 1550 |
} |
| 1551 |
public function getTaglines() |
| 1552 |
{ |
| 1553 |
return $this->taglines; |
| 1554 |
} |
| 1555 |
public function setUrls($urls) |
| 1556 |
{ |
| 1557 |
$this->urls = $urls; |
| 1558 |
} |
| 1559 |
public function getUrls() |
| 1560 |
{ |
| 1561 |
return $this->urls; |
| 1562 |
} |
| 1563 |
} |
| 1564 |
|
| 1565 |
class Google_Service_People_PersonMetadata extends Google_Collection |
| 1566 |
{ |
| 1567 |
protected $collection_key = 'sources'; |
| 1568 |
protected $internal_gapi_mappings = array( |
| 1569 |
); |
| 1570 |
public $deleted; |
| 1571 |
public $objectType; |
| 1572 |
public $previousResourceNames; |
| 1573 |
protected $sourcesType = 'Google_Service_People_Source'; |
| 1574 |
protected $sourcesDataType = 'array'; |
| 1575 |
|
| 1576 |
|
| 1577 |
public function setDeleted($deleted) |
| 1578 |
{ |
| 1579 |
$this->deleted = $deleted; |
| 1580 |
} |
| 1581 |
public function getDeleted() |
| 1582 |
{ |
| 1583 |
return $this->deleted; |
| 1584 |
} |
| 1585 |
public function setObjectType($objectType) |
| 1586 |
{ |
| 1587 |
$this->objectType = $objectType; |
| 1588 |
} |
| 1589 |
public function getObjectType() |
| 1590 |
{ |
| 1591 |
return $this->objectType; |
| 1592 |
} |
| 1593 |
public function setPreviousResourceNames($previousResourceNames) |
| 1594 |
{ |
| 1595 |
$this->previousResourceNames = $previousResourceNames; |
| 1596 |
} |
| 1597 |
public function getPreviousResourceNames() |
| 1598 |
{ |
| 1599 |
return $this->previousResourceNames; |
| 1600 |
} |
| 1601 |
public function setSources($sources) |
| 1602 |
{ |
| 1603 |
$this->sources = $sources; |
| 1604 |
} |
| 1605 |
public function getSources() |
| 1606 |
{ |
| 1607 |
return $this->sources; |
| 1608 |
} |
| 1609 |
} |
| 1610 |
|
| 1611 |
class Google_Service_People_PersonResponse extends Google_Model |
| 1612 |
{ |
| 1613 |
protected $internal_gapi_mappings = array( |
| 1614 |
); |
| 1615 |
public $httpStatusCode; |
| 1616 |
protected $personType = 'Google_Service_People_Person'; |
| 1617 |
protected $personDataType = ''; |
| 1618 |
public $requestedResourceName; |
| 1619 |
|
| 1620 |
|
| 1621 |
public function setHttpStatusCode($httpStatusCode) |
| 1622 |
{ |
| 1623 |
$this->httpStatusCode = $httpStatusCode; |
| 1624 |
} |
| 1625 |
public function getHttpStatusCode() |
| 1626 |
{ |
| 1627 |
return $this->httpStatusCode; |
| 1628 |
} |
| 1629 |
public function setPerson(Google_Service_People_Person $person) |
| 1630 |
{ |
| 1631 |
$this->person = $person; |
| 1632 |
} |
| 1633 |
public function getPerson() |
| 1634 |
{ |
| 1635 |
return $this->person; |
| 1636 |
} |
| 1637 |
public function setRequestedResourceName($requestedResourceName) |
| 1638 |
{ |
| 1639 |
$this->requestedResourceName = $requestedResourceName; |
| 1640 |
} |
| 1641 |
public function getRequestedResourceName() |
| 1642 |
{ |
| 1643 |
return $this->requestedResourceName; |
| 1644 |
} |
| 1645 |
} |
| 1646 |
|
| 1647 |
class Google_Service_People_PhoneNumber extends Google_Model |
| 1648 |
{ |
| 1649 |
protected $internal_gapi_mappings = array( |
| 1650 |
); |
| 1651 |
public $canonicalForm; |
| 1652 |
public $formattedType; |
| 1653 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 1654 |
protected $metadataDataType = ''; |
| 1655 |
public $type; |
| 1656 |
public $value; |
| 1657 |
|
| 1658 |
|
| 1659 |
public function setCanonicalForm($canonicalForm) |
| 1660 |
{ |
| 1661 |
$this->canonicalForm = $canonicalForm; |
| 1662 |
} |
| 1663 |
public function getCanonicalForm() |
| 1664 |
{ |
| 1665 |
return $this->canonicalForm; |
| 1666 |
} |
| 1667 |
public function setFormattedType($formattedType) |
| 1668 |
{ |
| 1669 |
$this->formattedType = $formattedType; |
| 1670 |
} |
| 1671 |
public function getFormattedType() |
| 1672 |
{ |
| 1673 |
return $this->formattedType; |
| 1674 |
} |
| 1675 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 1676 |
{ |
| 1677 |
$this->metadata = $metadata; |
| 1678 |
} |
| 1679 |
public function getMetadata() |
| 1680 |
{ |
| 1681 |
return $this->metadata; |
| 1682 |
} |
| 1683 |
public function setType($type) |
| 1684 |
{ |
| 1685 |
$this->type = $type; |
| 1686 |
} |
| 1687 |
public function getType() |
| 1688 |
{ |
| 1689 |
return $this->type; |
| 1690 |
} |
| 1691 |
public function setValue($value) |
| 1692 |
{ |
| 1693 |
$this->value = $value; |
| 1694 |
} |
| 1695 |
public function getValue() |
| 1696 |
{ |
| 1697 |
return $this->value; |
| 1698 |
} |
| 1699 |
} |
| 1700 |
|
| 1701 |
class Google_Service_People_Photo extends Google_Model |
| 1702 |
{ |
| 1703 |
protected $internal_gapi_mappings = array( |
| 1704 |
); |
| 1705 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 1706 |
protected $metadataDataType = ''; |
| 1707 |
public $url; |
| 1708 |
|
| 1709 |
|
| 1710 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 1711 |
{ |
| 1712 |
$this->metadata = $metadata; |
| 1713 |
} |
| 1714 |
public function getMetadata() |
| 1715 |
{ |
| 1716 |
return $this->metadata; |
| 1717 |
} |
| 1718 |
public function setUrl($url) |
| 1719 |
{ |
| 1720 |
$this->url = $url; |
| 1721 |
} |
| 1722 |
public function getUrl() |
| 1723 |
{ |
| 1724 |
return $this->url; |
| 1725 |
} |
| 1726 |
} |
| 1727 |
|
| 1728 |
class Google_Service_People_Relation extends Google_Model |
| 1729 |
{ |
| 1730 |
protected $internal_gapi_mappings = array( |
| 1731 |
); |
| 1732 |
public $formattedType; |
| 1733 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 1734 |
protected $metadataDataType = ''; |
| 1735 |
public $person; |
| 1736 |
public $type; |
| 1737 |
|
| 1738 |
|
| 1739 |
public function setFormattedType($formattedType) |
| 1740 |
{ |
| 1741 |
$this->formattedType = $formattedType; |
| 1742 |
} |
| 1743 |
public function getFormattedType() |
| 1744 |
{ |
| 1745 |
return $this->formattedType; |
| 1746 |
} |
| 1747 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 1748 |
{ |
| 1749 |
$this->metadata = $metadata; |
| 1750 |
} |
| 1751 |
public function getMetadata() |
| 1752 |
{ |
| 1753 |
return $this->metadata; |
| 1754 |
} |
| 1755 |
public function setPerson($person) |
| 1756 |
{ |
| 1757 |
$this->person = $person; |
| 1758 |
} |
| 1759 |
public function getPerson() |
| 1760 |
{ |
| 1761 |
return $this->person; |
| 1762 |
} |
| 1763 |
public function setType($type) |
| 1764 |
{ |
| 1765 |
$this->type = $type; |
| 1766 |
} |
| 1767 |
public function getType() |
| 1768 |
{ |
| 1769 |
return $this->type; |
| 1770 |
} |
| 1771 |
} |
| 1772 |
|
| 1773 |
class Google_Service_People_RelationshipInterest extends Google_Model |
| 1774 |
{ |
| 1775 |
protected $internal_gapi_mappings = array( |
| 1776 |
); |
| 1777 |
public $formattedValue; |
| 1778 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 1779 |
protected $metadataDataType = ''; |
| 1780 |
public $value; |
| 1781 |
|
| 1782 |
|
| 1783 |
public function setFormattedValue($formattedValue) |
| 1784 |
{ |
| 1785 |
$this->formattedValue = $formattedValue; |
| 1786 |
} |
| 1787 |
public function getFormattedValue() |
| 1788 |
{ |
| 1789 |
return $this->formattedValue; |
| 1790 |
} |
| 1791 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 1792 |
{ |
| 1793 |
$this->metadata = $metadata; |
| 1794 |
} |
| 1795 |
public function getMetadata() |
| 1796 |
{ |
| 1797 |
return $this->metadata; |
| 1798 |
} |
| 1799 |
public function setValue($value) |
| 1800 |
{ |
| 1801 |
$this->value = $value; |
| 1802 |
} |
| 1803 |
public function getValue() |
| 1804 |
{ |
| 1805 |
return $this->value; |
| 1806 |
} |
| 1807 |
} |
| 1808 |
|
| 1809 |
class Google_Service_People_RelationshipStatus extends Google_Model |
| 1810 |
{ |
| 1811 |
protected $internal_gapi_mappings = array( |
| 1812 |
); |
| 1813 |
public $formattedValue; |
| 1814 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 1815 |
protected $metadataDataType = ''; |
| 1816 |
public $value; |
| 1817 |
|
| 1818 |
|
| 1819 |
public function setFormattedValue($formattedValue) |
| 1820 |
{ |
| 1821 |
$this->formattedValue = $formattedValue; |
| 1822 |
} |
| 1823 |
public function getFormattedValue() |
| 1824 |
{ |
| 1825 |
return $this->formattedValue; |
| 1826 |
} |
| 1827 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 1828 |
{ |
| 1829 |
$this->metadata = $metadata; |
| 1830 |
} |
| 1831 |
public function getMetadata() |
| 1832 |
{ |
| 1833 |
return $this->metadata; |
| 1834 |
} |
| 1835 |
public function setValue($value) |
| 1836 |
{ |
| 1837 |
$this->value = $value; |
| 1838 |
} |
| 1839 |
public function getValue() |
| 1840 |
{ |
| 1841 |
return $this->value; |
| 1842 |
} |
| 1843 |
} |
| 1844 |
|
| 1845 |
class Google_Service_People_Residence extends Google_Model |
| 1846 |
{ |
| 1847 |
protected $internal_gapi_mappings = array( |
| 1848 |
); |
| 1849 |
public $current; |
| 1850 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 1851 |
protected $metadataDataType = ''; |
| 1852 |
public $value; |
| 1853 |
|
| 1854 |
|
| 1855 |
public function setCurrent($current) |
| 1856 |
{ |
| 1857 |
$this->current = $current; |
| 1858 |
} |
| 1859 |
public function getCurrent() |
| 1860 |
{ |
| 1861 |
return $this->current; |
| 1862 |
} |
| 1863 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 1864 |
{ |
| 1865 |
$this->metadata = $metadata; |
| 1866 |
} |
| 1867 |
public function getMetadata() |
| 1868 |
{ |
| 1869 |
return $this->metadata; |
| 1870 |
} |
| 1871 |
public function setValue($value) |
| 1872 |
{ |
| 1873 |
$this->value = $value; |
| 1874 |
} |
| 1875 |
public function getValue() |
| 1876 |
{ |
| 1877 |
return $this->value; |
| 1878 |
} |
| 1879 |
} |
| 1880 |
|
| 1881 |
class Google_Service_People_Skill extends Google_Model |
| 1882 |
{ |
| 1883 |
protected $internal_gapi_mappings = array( |
| 1884 |
); |
| 1885 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 1886 |
protected $metadataDataType = ''; |
| 1887 |
public $value; |
| 1888 |
|
| 1889 |
|
| 1890 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 1891 |
{ |
| 1892 |
$this->metadata = $metadata; |
| 1893 |
} |
| 1894 |
public function getMetadata() |
| 1895 |
{ |
| 1896 |
return $this->metadata; |
| 1897 |
} |
| 1898 |
public function setValue($value) |
| 1899 |
{ |
| 1900 |
$this->value = $value; |
| 1901 |
} |
| 1902 |
public function getValue() |
| 1903 |
{ |
| 1904 |
return $this->value; |
| 1905 |
} |
| 1906 |
} |
| 1907 |
|
| 1908 |
class Google_Service_People_Source extends Google_Model |
| 1909 |
{ |
| 1910 |
protected $internal_gapi_mappings = array( |
| 1911 |
); |
| 1912 |
public $id; |
| 1913 |
public $type; |
| 1914 |
|
| 1915 |
|
| 1916 |
public function setId($id) |
| 1917 |
{ |
| 1918 |
$this->id = $id; |
| 1919 |
} |
| 1920 |
public function getId() |
| 1921 |
{ |
| 1922 |
return $this->id; |
| 1923 |
} |
| 1924 |
public function setType($type) |
| 1925 |
{ |
| 1926 |
$this->type = $type; |
| 1927 |
} |
| 1928 |
public function getType() |
| 1929 |
{ |
| 1930 |
return $this->type; |
| 1931 |
} |
| 1932 |
} |
| 1933 |
|
| 1934 |
class Google_Service_People_Tagline extends Google_Model |
| 1935 |
{ |
| 1936 |
protected $internal_gapi_mappings = array( |
| 1937 |
); |
| 1938 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 1939 |
protected $metadataDataType = ''; |
| 1940 |
public $value; |
| 1941 |
|
| 1942 |
|
| 1943 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 1944 |
{ |
| 1945 |
$this->metadata = $metadata; |
| 1946 |
} |
| 1947 |
public function getMetadata() |
| 1948 |
{ |
| 1949 |
return $this->metadata; |
| 1950 |
} |
| 1951 |
public function setValue($value) |
| 1952 |
{ |
| 1953 |
$this->value = $value; |
| 1954 |
} |
| 1955 |
public function getValue() |
| 1956 |
{ |
| 1957 |
return $this->value; |
| 1958 |
} |
| 1959 |
} |
| 1960 |
|
| 1961 |
class Google_Service_People_Url extends Google_Model |
| 1962 |
{ |
| 1963 |
protected $internal_gapi_mappings = array( |
| 1964 |
); |
| 1965 |
public $formattedType; |
| 1966 |
protected $metadataType = 'Google_Service_People_FieldMetadata'; |
| 1967 |
protected $metadataDataType = ''; |
| 1968 |
public $type; |
| 1969 |
public $value; |
| 1970 |
|
| 1971 |
|
| 1972 |
public function setFormattedType($formattedType) |
| 1973 |
{ |
| 1974 |
$this->formattedType = $formattedType; |
| 1975 |
} |
| 1976 |
public function getFormattedType() |
| 1977 |
{ |
| 1978 |
return $this->formattedType; |
| 1979 |
} |
| 1980 |
public function setMetadata(Google_Service_People_FieldMetadata $metadata) |
| 1981 |
{ |
| 1982 |
$this->metadata = $metadata; |
| 1983 |
} |
| 1984 |
public function getMetadata() |
| 1985 |
{ |
| 1986 |
return $this->metadata; |
| 1987 |
} |
| 1988 |
public function setType($type) |
| 1989 |
{ |
| 1990 |
$this->type = $type; |
| 1991 |
} |
| 1992 |
public function getType() |
| 1993 |
{ |
| 1994 |
return $this->type; |
| 1995 |
} |
| 1996 |
public function setValue($value) |
| 1997 |
{ |
| 1998 |
$this->value = $value; |
| 1999 |
} |
| 2000 |
public function getValue() |
| 2001 |
{ |
| 2002 |
return $this->value; |
| 2003 |
} |
| 2004 |
} |
| 2005 |
|