説明なし

ActivityActor.php 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?php
  2. /*
  3. * Copyright 2014 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. class Google_Service_PlusDomains_ActivityActor extends Google_Model
  18. {
  19. protected $clientSpecificActorInfoType = 'Google_Service_PlusDomains_ActivityActorClientSpecificActorInfo';
  20. protected $clientSpecificActorInfoDataType = '';
  21. public $displayName;
  22. public $id;
  23. protected $imageType = 'Google_Service_PlusDomains_ActivityActorImage';
  24. protected $imageDataType = '';
  25. protected $nameType = 'Google_Service_PlusDomains_ActivityActorName';
  26. protected $nameDataType = '';
  27. public $url;
  28. protected $verificationType = 'Google_Service_PlusDomains_ActivityActorVerification';
  29. protected $verificationDataType = '';
  30. /**
  31. * @param Google_Service_PlusDomains_ActivityActorClientSpecificActorInfo
  32. */
  33. public function setClientSpecificActorInfo(Google_Service_PlusDomains_ActivityActorClientSpecificActorInfo $clientSpecificActorInfo)
  34. {
  35. $this->clientSpecificActorInfo = $clientSpecificActorInfo;
  36. }
  37. /**
  38. * @return Google_Service_PlusDomains_ActivityActorClientSpecificActorInfo
  39. */
  40. public function getClientSpecificActorInfo()
  41. {
  42. return $this->clientSpecificActorInfo;
  43. }
  44. public function setDisplayName($displayName)
  45. {
  46. $this->displayName = $displayName;
  47. }
  48. public function getDisplayName()
  49. {
  50. return $this->displayName;
  51. }
  52. public function setId($id)
  53. {
  54. $this->id = $id;
  55. }
  56. public function getId()
  57. {
  58. return $this->id;
  59. }
  60. /**
  61. * @param Google_Service_PlusDomains_ActivityActorImage
  62. */
  63. public function setImage(Google_Service_PlusDomains_ActivityActorImage $image)
  64. {
  65. $this->image = $image;
  66. }
  67. /**
  68. * @return Google_Service_PlusDomains_ActivityActorImage
  69. */
  70. public function getImage()
  71. {
  72. return $this->image;
  73. }
  74. /**
  75. * @param Google_Service_PlusDomains_ActivityActorName
  76. */
  77. public function setName(Google_Service_PlusDomains_ActivityActorName $name)
  78. {
  79. $this->name = $name;
  80. }
  81. /**
  82. * @return Google_Service_PlusDomains_ActivityActorName
  83. */
  84. public function getName()
  85. {
  86. return $this->name;
  87. }
  88. public function setUrl($url)
  89. {
  90. $this->url = $url;
  91. }
  92. public function getUrl()
  93. {
  94. return $this->url;
  95. }
  96. /**
  97. * @param Google_Service_PlusDomains_ActivityActorVerification
  98. */
  99. public function setVerification(Google_Service_PlusDomains_ActivityActorVerification $verification)
  100. {
  101. $this->verification = $verification;
  102. }
  103. /**
  104. * @return Google_Service_PlusDomains_ActivityActorVerification
  105. */
  106. public function getVerification()
  107. {
  108. return $this->verification;
  109. }
  110. }