CreatePersonResponse.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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\V20200303\Models;
  18. use TencentCloud\Common\AbstractModel;
  19. /**
  20. * CreatePerson返回参数结构体
  21. *
  22. * @method string getFaceId() 获取人脸图片唯一标识。
  23. * @method void setFaceId(string $FaceId) 设置人脸图片唯一标识。
  24. * @method FaceRect getFaceRect() 获取检测出的人脸框的位置。
  25. 注意:此字段可能返回 null,表示取不到有效值。
  26. * @method void setFaceRect(FaceRect $FaceRect) 设置检测出的人脸框的位置。
  27. 注意:此字段可能返回 null,表示取不到有效值。
  28. * @method string getSimilarPersonId() 获取疑似同一人的PersonId。
  29. 当 UniquePersonControl 参数不为0且人员库中有疑似的同一人,此参数才有意义。
  30. * @method void setSimilarPersonId(string $SimilarPersonId) 设置疑似同一人的PersonId。
  31. 当 UniquePersonControl 参数不为0且人员库中有疑似的同一人,此参数才有意义。
  32. * @method string getFaceModelVersion() 获取人脸识别所用的算法模型版本。
  33. * @method void setFaceModelVersion(string $FaceModelVersion) 设置人脸识别所用的算法模型版本。
  34. * @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  35. * @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  36. */
  37. class CreatePersonResponse extends AbstractModel
  38. {
  39. /**
  40. * @var string 人脸图片唯一标识。
  41. */
  42. public $FaceId;
  43. /**
  44. * @var FaceRect 检测出的人脸框的位置。
  45. 注意:此字段可能返回 null,表示取不到有效值。
  46. */
  47. public $FaceRect;
  48. /**
  49. * @var string 疑似同一人的PersonId。
  50. 当 UniquePersonControl 参数不为0且人员库中有疑似的同一人,此参数才有意义。
  51. */
  52. public $SimilarPersonId;
  53. /**
  54. * @var string 人脸识别所用的算法模型版本。
  55. */
  56. public $FaceModelVersion;
  57. /**
  58. * @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  59. */
  60. public $RequestId;
  61. /**
  62. * @param string $FaceId 人脸图片唯一标识。
  63. * @param FaceRect $FaceRect 检测出的人脸框的位置。
  64. 注意:此字段可能返回 null,表示取不到有效值。
  65. * @param string $SimilarPersonId 疑似同一人的PersonId。
  66. 当 UniquePersonControl 参数不为0且人员库中有疑似的同一人,此参数才有意义。
  67. * @param string $FaceModelVersion 人脸识别所用的算法模型版本。
  68. * @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  69. */
  70. function __construct()
  71. {
  72. }
  73. /**
  74. * For internal only. DO NOT USE IT.
  75. */
  76. public function deserialize($param)
  77. {
  78. if ($param === null) {
  79. return;
  80. }
  81. if (array_key_exists("FaceId",$param) and $param["FaceId"] !== null) {
  82. $this->FaceId = $param["FaceId"];
  83. }
  84. if (array_key_exists("FaceRect",$param) and $param["FaceRect"] !== null) {
  85. $this->FaceRect = new FaceRect();
  86. $this->FaceRect->deserialize($param["FaceRect"]);
  87. }
  88. if (array_key_exists("SimilarPersonId",$param) and $param["SimilarPersonId"] !== null) {
  89. $this->SimilarPersonId = $param["SimilarPersonId"];
  90. }
  91. if (array_key_exists("FaceModelVersion",$param) and $param["FaceModelVersion"] !== null) {
  92. $this->FaceModelVersion = $param["FaceModelVersion"];
  93. }
  94. if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
  95. $this->RequestId = $param["RequestId"];
  96. }
  97. }
  98. }