PersonInfo.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?php
  2. /*
  3. * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of 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,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. namespace TencentCloud\Iai\V20180301\Models;
  18. use TencentCloud\Common\AbstractModel;
  19. /**
  20. * 返回的人员信息
  21. *
  22. * @method string getPersonName() 获取人员名称
  23. * @method void setPersonName(string $PersonName) 设置人员名称
  24. * @method string getPersonId() 获取人员Id
  25. * @method void setPersonId(string $PersonId) 设置人员Id
  26. * @method integer getGender() 获取人员性别
  27. * @method void setGender(integer $Gender) 设置人员性别
  28. * @method array getPersonExDescriptions() 获取人员描述字段内容
  29. * @method void setPersonExDescriptions(array $PersonExDescriptions) 设置人员描述字段内容
  30. * @method array getFaceIds() 获取包含的人脸照片列表
  31. * @method void setFaceIds(array $FaceIds) 设置包含的人脸照片列表
  32. * @method integer getCreationTimestamp() 获取人员的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
  33. Unix 纪元时间是 1970 年 1 月 1 日星期四,协调世界时 (UTC) 00:00:00。有关更多信息,请参阅 Unix 时间。
  34. * @method void setCreationTimestamp(integer $CreationTimestamp) 设置人员的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
  35. Unix 纪元时间是 1970 年 1 月 1 日星期四,协调世界时 (UTC) 00:00:00。有关更多信息,请参阅 Unix 时间。
  36. */
  37. class PersonInfo extends AbstractModel
  38. {
  39. /**
  40. * @var string 人员名称
  41. */
  42. public $PersonName;
  43. /**
  44. * @var string 人员Id
  45. */
  46. public $PersonId;
  47. /**
  48. * @var integer 人员性别
  49. */
  50. public $Gender;
  51. /**
  52. * @var array 人员描述字段内容
  53. */
  54. public $PersonExDescriptions;
  55. /**
  56. * @var array 包含的人脸照片列表
  57. */
  58. public $FaceIds;
  59. /**
  60. * @var integer 人员的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
  61. Unix 纪元时间是 1970 年 1 月 1 日星期四,协调世界时 (UTC) 00:00:00。有关更多信息,请参阅 Unix 时间。
  62. */
  63. public $CreationTimestamp;
  64. /**
  65. * @param string $PersonName 人员名称
  66. * @param string $PersonId 人员Id
  67. * @param integer $Gender 人员性别
  68. * @param array $PersonExDescriptions 人员描述字段内容
  69. * @param array $FaceIds 包含的人脸照片列表
  70. * @param integer $CreationTimestamp 人员的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
  71. Unix 纪元时间是 1970 年 1 月 1 日星期四,协调世界时 (UTC) 00:00:00。有关更多信息,请参阅 Unix 时间。
  72. */
  73. function __construct()
  74. {
  75. }
  76. /**
  77. * For internal only. DO NOT USE IT.
  78. */
  79. public function deserialize($param)
  80. {
  81. if ($param === null) {
  82. return;
  83. }
  84. if (array_key_exists("PersonName",$param) and $param["PersonName"] !== null) {
  85. $this->PersonName = $param["PersonName"];
  86. }
  87. if (array_key_exists("PersonId",$param) and $param["PersonId"] !== null) {
  88. $this->PersonId = $param["PersonId"];
  89. }
  90. if (array_key_exists("Gender",$param) and $param["Gender"] !== null) {
  91. $this->Gender = $param["Gender"];
  92. }
  93. if (array_key_exists("PersonExDescriptions",$param) and $param["PersonExDescriptions"] !== null) {
  94. $this->PersonExDescriptions = $param["PersonExDescriptions"];
  95. }
  96. if (array_key_exists("FaceIds",$param) and $param["FaceIds"] !== null) {
  97. $this->FaceIds = $param["FaceIds"];
  98. }
  99. if (array_key_exists("CreationTimestamp",$param) and $param["CreationTimestamp"] !== null) {
  100. $this->CreationTimestamp = $param["CreationTimestamp"];
  101. }
  102. }
  103. }