Eye.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. * 眼睛信息
  21. *
  22. * @method AttributeItem getGlass() 获取识别是否佩戴眼镜。
  23. AttributeItem对应的Type为 —— 0:无眼镜,1:普通眼镜,2:墨镜
  24. * @method void setGlass(AttributeItem $Glass) 设置识别是否佩戴眼镜。
  25. AttributeItem对应的Type为 —— 0:无眼镜,1:普通眼镜,2:墨镜
  26. * @method AttributeItem getEyeOpen() 获取识别眼睛的睁开、闭合状态。
  27. AttributeItem对应的Type为 —— 0:睁开,1:闭眼
  28. * @method void setEyeOpen(AttributeItem $EyeOpen) 设置识别眼睛的睁开、闭合状态。
  29. AttributeItem对应的Type为 —— 0:睁开,1:闭眼
  30. * @method AttributeItem getEyelidType() 获取识别是否双眼皮。
  31. AttributeItem对应的Type为 —— 0:无,1:有。
  32. * @method void setEyelidType(AttributeItem $EyelidType) 设置识别是否双眼皮。
  33. AttributeItem对应的Type为 —— 0:无,1:有。
  34. * @method AttributeItem getEyeSize() 获取眼睛大小。
  35. AttributeItem对应的Type为 —— 0:小眼睛,1:普通眼睛,2:大眼睛。
  36. * @method void setEyeSize(AttributeItem $EyeSize) 设置眼睛大小。
  37. AttributeItem对应的Type为 —— 0:小眼睛,1:普通眼睛,2:大眼睛。
  38. */
  39. class Eye extends AbstractModel
  40. {
  41. /**
  42. * @var AttributeItem 识别是否佩戴眼镜。
  43. AttributeItem对应的Type为 —— 0:无眼镜,1:普通眼镜,2:墨镜
  44. */
  45. public $Glass;
  46. /**
  47. * @var AttributeItem 识别眼睛的睁开、闭合状态。
  48. AttributeItem对应的Type为 —— 0:睁开,1:闭眼
  49. */
  50. public $EyeOpen;
  51. /**
  52. * @var AttributeItem 识别是否双眼皮。
  53. AttributeItem对应的Type为 —— 0:无,1:有。
  54. */
  55. public $EyelidType;
  56. /**
  57. * @var AttributeItem 眼睛大小。
  58. AttributeItem对应的Type为 —— 0:小眼睛,1:普通眼睛,2:大眼睛。
  59. */
  60. public $EyeSize;
  61. /**
  62. * @param AttributeItem $Glass 识别是否佩戴眼镜。
  63. AttributeItem对应的Type为 —— 0:无眼镜,1:普通眼镜,2:墨镜
  64. * @param AttributeItem $EyeOpen 识别眼睛的睁开、闭合状态。
  65. AttributeItem对应的Type为 —— 0:睁开,1:闭眼
  66. * @param AttributeItem $EyelidType 识别是否双眼皮。
  67. AttributeItem对应的Type为 —— 0:无,1:有。
  68. * @param AttributeItem $EyeSize 眼睛大小。
  69. AttributeItem对应的Type为 —— 0:小眼睛,1:普通眼睛,2:大眼睛。
  70. */
  71. function __construct()
  72. {
  73. }
  74. /**
  75. * For internal only. DO NOT USE IT.
  76. */
  77. public function deserialize($param)
  78. {
  79. if ($param === null) {
  80. return;
  81. }
  82. if (array_key_exists("Glass",$param) and $param["Glass"] !== null) {
  83. $this->Glass = new AttributeItem();
  84. $this->Glass->deserialize($param["Glass"]);
  85. }
  86. if (array_key_exists("EyeOpen",$param) and $param["EyeOpen"] !== null) {
  87. $this->EyeOpen = new AttributeItem();
  88. $this->EyeOpen->deserialize($param["EyeOpen"]);
  89. }
  90. if (array_key_exists("EyelidType",$param) and $param["EyelidType"] !== null) {
  91. $this->EyelidType = new AttributeItem();
  92. $this->EyelidType->deserialize($param["EyelidType"]);
  93. }
  94. if (array_key_exists("EyeSize",$param) and $param["EyeSize"] !== null) {
  95. $this->EyeSize = new AttributeItem();
  96. $this->EyeSize->deserialize($param["EyeSize"]);
  97. }
  98. }
  99. }