GetPersonGroupInfoResponse.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. * GetPersonGroupInfo返回参数结构体
  21. *
  22. * @method array getPersonGroupInfos() 获取包含此人员的人员库及描述字段内容列表
  23. * @method void setPersonGroupInfos(array $PersonGroupInfos) 设置包含此人员的人员库及描述字段内容列表
  24. * @method integer getGroupNum() 获取人员库总数量
  25. 注意:此字段可能返回 null,表示取不到有效值。
  26. * @method void setGroupNum(integer $GroupNum) 设置人员库总数量
  27. 注意:此字段可能返回 null,表示取不到有效值。
  28. * @method string getFaceModelVersion() 获取人脸识别服务所用的算法模型版本。
  29. 注意:此字段可能返回 null,表示取不到有效值。
  30. * @method void setFaceModelVersion(string $FaceModelVersion) 设置人脸识别服务所用的算法模型版本。
  31. 注意:此字段可能返回 null,表示取不到有效值。
  32. * @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  33. * @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  34. */
  35. class GetPersonGroupInfoResponse extends AbstractModel
  36. {
  37. /**
  38. * @var array 包含此人员的人员库及描述字段内容列表
  39. */
  40. public $PersonGroupInfos;
  41. /**
  42. * @var integer 人员库总数量
  43. 注意:此字段可能返回 null,表示取不到有效值。
  44. */
  45. public $GroupNum;
  46. /**
  47. * @var string 人脸识别服务所用的算法模型版本。
  48. 注意:此字段可能返回 null,表示取不到有效值。
  49. */
  50. public $FaceModelVersion;
  51. /**
  52. * @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  53. */
  54. public $RequestId;
  55. /**
  56. * @param array $PersonGroupInfos 包含此人员的人员库及描述字段内容列表
  57. * @param integer $GroupNum 人员库总数量
  58. 注意:此字段可能返回 null,表示取不到有效值。
  59. * @param string $FaceModelVersion 人脸识别服务所用的算法模型版本。
  60. 注意:此字段可能返回 null,表示取不到有效值。
  61. * @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  62. */
  63. function __construct()
  64. {
  65. }
  66. /**
  67. * For internal only. DO NOT USE IT.
  68. */
  69. public function deserialize($param)
  70. {
  71. if ($param === null) {
  72. return;
  73. }
  74. if (array_key_exists("PersonGroupInfos",$param) and $param["PersonGroupInfos"] !== null) {
  75. $this->PersonGroupInfos = [];
  76. foreach ($param["PersonGroupInfos"] as $key => $value){
  77. $obj = new PersonGroupInfo();
  78. $obj->deserialize($value);
  79. array_push($this->PersonGroupInfos, $obj);
  80. }
  81. }
  82. if (array_key_exists("GroupNum",$param) and $param["GroupNum"] !== null) {
  83. $this->GroupNum = $param["GroupNum"];
  84. }
  85. if (array_key_exists("FaceModelVersion",$param) and $param["FaceModelVersion"] !== null) {
  86. $this->FaceModelVersion = $param["FaceModelVersion"];
  87. }
  88. if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
  89. $this->RequestId = $param["RequestId"];
  90. }
  91. }
  92. }