GetGroupInfoResponse.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. * GetGroupInfo返回参数结构体
  21. *
  22. * @method string getGroupName() 获取人员库名称
  23. * @method void setGroupName(string $GroupName) 设置人员库名称
  24. * @method string getGroupId() 获取人员库ID
  25. * @method void setGroupId(string $GroupId) 设置人员库ID
  26. * @method array getGroupExDescriptions() 获取人员库自定义描述字段
  27. * @method void setGroupExDescriptions(array $GroupExDescriptions) 设置人员库自定义描述字段
  28. * @method string getTag() 获取人员库信息备注
  29. * @method void setTag(string $Tag) 设置人员库信息备注
  30. * @method string getFaceModelVersion() 获取人脸识别所用的算法模型版本。
  31. * @method void setFaceModelVersion(string $FaceModelVersion) 设置人脸识别所用的算法模型版本。
  32. * @method integer getCreationTimestamp() 获取Group的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
  33. * @method void setCreationTimestamp(integer $CreationTimestamp) 设置Group的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
  34. * @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  35. * @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  36. */
  37. class GetGroupInfoResponse extends AbstractModel
  38. {
  39. /**
  40. * @var string 人员库名称
  41. */
  42. public $GroupName;
  43. /**
  44. * @var string 人员库ID
  45. */
  46. public $GroupId;
  47. /**
  48. * @var array 人员库自定义描述字段
  49. */
  50. public $GroupExDescriptions;
  51. /**
  52. * @var string 人员库信息备注
  53. */
  54. public $Tag;
  55. /**
  56. * @var string 人脸识别所用的算法模型版本。
  57. */
  58. public $FaceModelVersion;
  59. /**
  60. * @var integer Group的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
  61. */
  62. public $CreationTimestamp;
  63. /**
  64. * @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  65. */
  66. public $RequestId;
  67. /**
  68. * @param string $GroupName 人员库名称
  69. * @param string $GroupId 人员库ID
  70. * @param array $GroupExDescriptions 人员库自定义描述字段
  71. * @param string $Tag 人员库信息备注
  72. * @param string $FaceModelVersion 人脸识别所用的算法模型版本。
  73. * @param integer $CreationTimestamp Group的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
  74. * @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  75. */
  76. function __construct()
  77. {
  78. }
  79. /**
  80. * For internal only. DO NOT USE IT.
  81. */
  82. public function deserialize($param)
  83. {
  84. if ($param === null) {
  85. return;
  86. }
  87. if (array_key_exists("GroupName",$param) and $param["GroupName"] !== null) {
  88. $this->GroupName = $param["GroupName"];
  89. }
  90. if (array_key_exists("GroupId",$param) and $param["GroupId"] !== null) {
  91. $this->GroupId = $param["GroupId"];
  92. }
  93. if (array_key_exists("GroupExDescriptions",$param) and $param["GroupExDescriptions"] !== null) {
  94. $this->GroupExDescriptions = $param["GroupExDescriptions"];
  95. }
  96. if (array_key_exists("Tag",$param) and $param["Tag"] !== null) {
  97. $this->Tag = $param["Tag"];
  98. }
  99. if (array_key_exists("FaceModelVersion",$param) and $param["FaceModelVersion"] !== null) {
  100. $this->FaceModelVersion = $param["FaceModelVersion"];
  101. }
  102. if (array_key_exists("CreationTimestamp",$param) and $param["CreationTimestamp"] !== null) {
  103. $this->CreationTimestamp = $param["CreationTimestamp"];
  104. }
  105. if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
  106. $this->RequestId = $param["RequestId"];
  107. }
  108. }
  109. }