GetGroupListResponse.php 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. * GetGroupList返回参数结构体
  21. *
  22. * @method array getGroupInfos() 获取返回的人员库信息
  23. * @method void setGroupInfos(array $GroupInfos) 设置返回的人员库信息
  24. * @method integer getGroupNum() 获取人员库总数量
  25. 注意:此字段可能返回 null,表示取不到有效值。
  26. * @method void setGroupNum(integer $GroupNum) 设置人员库总数量
  27. 注意:此字段可能返回 null,表示取不到有效值。
  28. * @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  29. * @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  30. */
  31. class GetGroupListResponse extends AbstractModel
  32. {
  33. /**
  34. * @var array 返回的人员库信息
  35. */
  36. public $GroupInfos;
  37. /**
  38. * @var integer 人员库总数量
  39. 注意:此字段可能返回 null,表示取不到有效值。
  40. */
  41. public $GroupNum;
  42. /**
  43. * @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  44. */
  45. public $RequestId;
  46. /**
  47. * @param array $GroupInfos 返回的人员库信息
  48. * @param integer $GroupNum 人员库总数量
  49. 注意:此字段可能返回 null,表示取不到有效值。
  50. * @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  51. */
  52. function __construct()
  53. {
  54. }
  55. /**
  56. * For internal only. DO NOT USE IT.
  57. */
  58. public function deserialize($param)
  59. {
  60. if ($param === null) {
  61. return;
  62. }
  63. if (array_key_exists("GroupInfos",$param) and $param["GroupInfos"] !== null) {
  64. $this->GroupInfos = [];
  65. foreach ($param["GroupInfos"] as $key => $value){
  66. $obj = new GroupInfo();
  67. $obj->deserialize($value);
  68. array_push($this->GroupInfos, $obj);
  69. }
  70. }
  71. if (array_key_exists("GroupNum",$param) and $param["GroupNum"] !== null) {
  72. $this->GroupNum = $param["GroupNum"];
  73. }
  74. if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
  75. $this->RequestId = $param["RequestId"];
  76. }
  77. }
  78. }