CreateGroupRequest.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. * CreateGroup请求参数结构体
  21. *
  22. * @method string getGroupName() 获取人员库名称,[1,60]个字符,可修改,不可重复。
  23. * @method void setGroupName(string $GroupName) 设置人员库名称,[1,60]个字符,可修改,不可重复。
  24. * @method string getGroupId() 获取人员库 ID,不可修改,不可重复。支持英文、数字、-%@#&_,长度限制64B。
  25. * @method void setGroupId(string $GroupId) 设置人员库 ID,不可修改,不可重复。支持英文、数字、-%@#&_,长度限制64B。
  26. * @method array getGroupExDescriptions() 获取人员库自定义描述字段,用于描述人员库中人员属性,该人员库下所有人员将拥有此描述字段。
  27. 最多可以创建5个。
  28. 每个自定义描述字段支持[1,30]个字符。
  29. 在同一人员库中自定义描述字段不可重复。
  30. 例: 设置某人员库“自定义描述字段”为["学号","工号","手机号"],
  31. 则该人员库下所有人员将拥有名为“学号”、“工号”、“手机号”的描述字段,
  32. 可在对应人员描述字段中填写内容,登记该人员的学号、工号、手机号等信息。
  33. * @method void setGroupExDescriptions(array $GroupExDescriptions) 设置人员库自定义描述字段,用于描述人员库中人员属性,该人员库下所有人员将拥有此描述字段。
  34. 最多可以创建5个。
  35. 每个自定义描述字段支持[1,30]个字符。
  36. 在同一人员库中自定义描述字段不可重复。
  37. 例: 设置某人员库“自定义描述字段”为["学号","工号","手机号"],
  38. 则该人员库下所有人员将拥有名为“学号”、“工号”、“手机号”的描述字段,
  39. 可在对应人员描述字段中填写内容,登记该人员的学号、工号、手机号等信息。
  40. * @method string getTag() 获取人员库信息备注,[0,40]个字符。
  41. * @method void setTag(string $Tag) 设置人员库信息备注,[0,40]个字符。
  42. * @method string getFaceModelVersion() 获取人脸识别服务所用的算法模型版本。
  43. 目前入参支持 “2.0”和“3.0“ 两个输入。
  44. 2020年4月2日开始,默认为“3.0”,之前使用过本接口的账号若未填写本参数默认为“2.0”。
  45. 2020年11月26日后开通服务的账号仅支持输入“3.0”。
  46. 不同算法模型版本对应的人脸识别算法不同,新版本的整体效果会优于旧版本,建议使用“3.0”版本。
  47. * @method void setFaceModelVersion(string $FaceModelVersion) 设置人脸识别服务所用的算法模型版本。
  48. 目前入参支持 “2.0”和“3.0“ 两个输入。
  49. 2020年4月2日开始,默认为“3.0”,之前使用过本接口的账号若未填写本参数默认为“2.0”。
  50. 2020年11月26日后开通服务的账号仅支持输入“3.0”。
  51. 不同算法模型版本对应的人脸识别算法不同,新版本的整体效果会优于旧版本,建议使用“3.0”版本。
  52. */
  53. class CreateGroupRequest extends AbstractModel
  54. {
  55. /**
  56. * @var string 人员库名称,[1,60]个字符,可修改,不可重复。
  57. */
  58. public $GroupName;
  59. /**
  60. * @var string 人员库 ID,不可修改,不可重复。支持英文、数字、-%@#&_,长度限制64B。
  61. */
  62. public $GroupId;
  63. /**
  64. * @var array 人员库自定义描述字段,用于描述人员库中人员属性,该人员库下所有人员将拥有此描述字段。
  65. 最多可以创建5个。
  66. 每个自定义描述字段支持[1,30]个字符。
  67. 在同一人员库中自定义描述字段不可重复。
  68. 例: 设置某人员库“自定义描述字段”为["学号","工号","手机号"],
  69. 则该人员库下所有人员将拥有名为“学号”、“工号”、“手机号”的描述字段,
  70. 可在对应人员描述字段中填写内容,登记该人员的学号、工号、手机号等信息。
  71. */
  72. public $GroupExDescriptions;
  73. /**
  74. * @var string 人员库信息备注,[0,40]个字符。
  75. */
  76. public $Tag;
  77. /**
  78. * @var string 人脸识别服务所用的算法模型版本。
  79. 目前入参支持 “2.0”和“3.0“ 两个输入。
  80. 2020年4月2日开始,默认为“3.0”,之前使用过本接口的账号若未填写本参数默认为“2.0”。
  81. 2020年11月26日后开通服务的账号仅支持输入“3.0”。
  82. 不同算法模型版本对应的人脸识别算法不同,新版本的整体效果会优于旧版本,建议使用“3.0”版本。
  83. */
  84. public $FaceModelVersion;
  85. /**
  86. * @param string $GroupName 人员库名称,[1,60]个字符,可修改,不可重复。
  87. * @param string $GroupId 人员库 ID,不可修改,不可重复。支持英文、数字、-%@#&_,长度限制64B。
  88. * @param array $GroupExDescriptions 人员库自定义描述字段,用于描述人员库中人员属性,该人员库下所有人员将拥有此描述字段。
  89. 最多可以创建5个。
  90. 每个自定义描述字段支持[1,30]个字符。
  91. 在同一人员库中自定义描述字段不可重复。
  92. 例: 设置某人员库“自定义描述字段”为["学号","工号","手机号"],
  93. 则该人员库下所有人员将拥有名为“学号”、“工号”、“手机号”的描述字段,
  94. 可在对应人员描述字段中填写内容,登记该人员的学号、工号、手机号等信息。
  95. * @param string $Tag 人员库信息备注,[0,40]个字符。
  96. * @param string $FaceModelVersion 人脸识别服务所用的算法模型版本。
  97. 目前入参支持 “2.0”和“3.0“ 两个输入。
  98. 2020年4月2日开始,默认为“3.0”,之前使用过本接口的账号若未填写本参数默认为“2.0”。
  99. 2020年11月26日后开通服务的账号仅支持输入“3.0”。
  100. 不同算法模型版本对应的人脸识别算法不同,新版本的整体效果会优于旧版本,建议使用“3.0”版本。
  101. */
  102. function __construct()
  103. {
  104. }
  105. /**
  106. * For internal only. DO NOT USE IT.
  107. */
  108. public function deserialize($param)
  109. {
  110. if ($param === null) {
  111. return;
  112. }
  113. if (array_key_exists("GroupName",$param) and $param["GroupName"] !== null) {
  114. $this->GroupName = $param["GroupName"];
  115. }
  116. if (array_key_exists("GroupId",$param) and $param["GroupId"] !== null) {
  117. $this->GroupId = $param["GroupId"];
  118. }
  119. if (array_key_exists("GroupExDescriptions",$param) and $param["GroupExDescriptions"] !== null) {
  120. $this->GroupExDescriptions = $param["GroupExDescriptions"];
  121. }
  122. if (array_key_exists("Tag",$param) and $param["Tag"] !== null) {
  123. $this->Tag = $param["Tag"];
  124. }
  125. if (array_key_exists("FaceModelVersion",$param) and $param["FaceModelVersion"] !== null) {
  126. $this->FaceModelVersion = $param["FaceModelVersion"];
  127. }
  128. }
  129. }