FaceHairAttributesInfo.php 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 integer getLength() 获取0:光头,1:短发,2:中发,3:长发,4:绑发
  23. 注意:此字段可能返回 null,表示取不到有效值。
  24. * @method void setLength(integer $Length) 设置0:光头,1:短发,2:中发,3:长发,4:绑发
  25. 注意:此字段可能返回 null,表示取不到有效值。
  26. * @method integer getBang() 获取0:有刘海,1:无刘海
  27. 注意:此字段可能返回 null,表示取不到有效值。
  28. * @method void setBang(integer $Bang) 设置0:有刘海,1:无刘海
  29. 注意:此字段可能返回 null,表示取不到有效值。
  30. * @method integer getColor() 获取0:黑色,1:金色,2:棕色,3:灰白色
  31. 注意:此字段可能返回 null,表示取不到有效值。
  32. * @method void setColor(integer $Color) 设置0:黑色,1:金色,2:棕色,3:灰白色
  33. 注意:此字段可能返回 null,表示取不到有效值。
  34. */
  35. class FaceHairAttributesInfo extends AbstractModel
  36. {
  37. /**
  38. * @var integer 0:光头,1:短发,2:中发,3:长发,4:绑发
  39. 注意:此字段可能返回 null,表示取不到有效值。
  40. */
  41. public $Length;
  42. /**
  43. * @var integer 0:有刘海,1:无刘海
  44. 注意:此字段可能返回 null,表示取不到有效值。
  45. */
  46. public $Bang;
  47. /**
  48. * @var integer 0:黑色,1:金色,2:棕色,3:灰白色
  49. 注意:此字段可能返回 null,表示取不到有效值。
  50. */
  51. public $Color;
  52. /**
  53. * @param integer $Length 0:光头,1:短发,2:中发,3:长发,4:绑发
  54. 注意:此字段可能返回 null,表示取不到有效值。
  55. * @param integer $Bang 0:有刘海,1:无刘海
  56. 注意:此字段可能返回 null,表示取不到有效值。
  57. * @param integer $Color 0:黑色,1:金色,2:棕色,3:灰白色
  58. 注意:此字段可能返回 null,表示取不到有效值。
  59. */
  60. function __construct()
  61. {
  62. }
  63. /**
  64. * For internal only. DO NOT USE IT.
  65. */
  66. public function deserialize($param)
  67. {
  68. if ($param === null) {
  69. return;
  70. }
  71. if (array_key_exists("Length",$param) and $param["Length"] !== null) {
  72. $this->Length = $param["Length"];
  73. }
  74. if (array_key_exists("Bang",$param) and $param["Bang"] !== null) {
  75. $this->Bang = $param["Bang"];
  76. }
  77. if (array_key_exists("Color",$param) and $param["Color"] !== null) {
  78. $this->Color = $param["Color"];
  79. }
  80. }
  81. }