Aucune description

CommentActor.php 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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_Plus_CommentActor extends Google_Model
  18. {
  19. protected $clientSpecificActorInfoType = 'Google_Service_Plus_CommentActorClientSpecificActorInfo';
  20. protected $clientSpecificActorInfoDataType = '';
  21. public $displayName;
  22. public $id;
  23. protected $imageType = 'Google_Service_Plus_CommentActorImage';
  24. protected $imageDataType = '';
  25. public $url;
  26. protected $verificationType = 'Google_Service_Plus_CommentActorVerification';
  27. protected $verificationDataType = '';
  28. /**
  29. * @param Google_Service_Plus_CommentActorClientSpecificActorInfo
  30. */
  31. public function setClientSpecificActorInfo(Google_Service_Plus_CommentActorClientSpecificActorInfo $clientSpecificActorInfo)
  32. {
  33. $this->clientSpecificActorInfo = $clientSpecificActorInfo;
  34. }
  35. /**
  36. * @return Google_Service_Plus_CommentActorClientSpecificActorInfo
  37. */
  38. public function getClientSpecificActorInfo()
  39. {
  40. return $this->clientSpecificActorInfo;
  41. }
  42. public function setDisplayName($displayName)
  43. {
  44. $this->displayName = $displayName;
  45. }
  46. public function getDisplayName()
  47. {
  48. return $this->displayName;
  49. }
  50. public function setId($id)
  51. {
  52. $this->id = $id;
  53. }
  54. public function getId()
  55. {
  56. return $this->id;
  57. }
  58. /**
  59. * @param Google_Service_Plus_CommentActorImage
  60. */
  61. public function setImage(Google_Service_Plus_CommentActorImage $image)
  62. {
  63. $this->image = $image;
  64. }
  65. /**
  66. * @return Google_Service_Plus_CommentActorImage
  67. */
  68. public function getImage()
  69. {
  70. return $this->image;
  71. }
  72. public function setUrl($url)
  73. {
  74. $this->url = $url;
  75. }
  76. public function getUrl()
  77. {
  78. return $this->url;
  79. }
  80. /**
  81. * @param Google_Service_Plus_CommentActorVerification
  82. */
  83. public function setVerification(Google_Service_Plus_CommentActorVerification $verification)
  84. {
  85. $this->verification = $verification;
  86. }
  87. /**
  88. * @return Google_Service_Plus_CommentActorVerification
  89. */
  90. public function getVerification()
  91. {
  92. return $this->verification;
  93. }
  94. }