Hair.php 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 getLength() 获取头发长度信息。
  23. AttributeItem对应的Type为 —— 0:光头,1:短发,2:中发,3:长发,4:绑发。
  24. * @method void setLength(AttributeItem $Length) 设置头发长度信息。
  25. AttributeItem对应的Type为 —— 0:光头,1:短发,2:中发,3:长发,4:绑发。
  26. * @method AttributeItem getBang() 获取刘海信息。
  27. AttributeItem对应的Type为 —— 0:无刘海,1:有刘海。
  28. * @method void setBang(AttributeItem $Bang) 设置刘海信息。
  29. AttributeItem对应的Type为 —— 0:无刘海,1:有刘海。
  30. * @method AttributeItem getColor() 获取头发颜色信息。
  31. AttributeItem对应的Type为 —— 0:黑色,1:金色,2:棕色,3:灰白色。
  32. * @method void setColor(AttributeItem $Color) 设置头发颜色信息。
  33. AttributeItem对应的Type为 —— 0:黑色,1:金色,2:棕色,3:灰白色。
  34. */
  35. class Hair extends AbstractModel
  36. {
  37. /**
  38. * @var AttributeItem 头发长度信息。
  39. AttributeItem对应的Type为 —— 0:光头,1:短发,2:中发,3:长发,4:绑发。
  40. */
  41. public $Length;
  42. /**
  43. * @var AttributeItem 刘海信息。
  44. AttributeItem对应的Type为 —— 0:无刘海,1:有刘海。
  45. */
  46. public $Bang;
  47. /**
  48. * @var AttributeItem 头发颜色信息。
  49. AttributeItem对应的Type为 —— 0:黑色,1:金色,2:棕色,3:灰白色。
  50. */
  51. public $Color;
  52. /**
  53. * @param AttributeItem $Length 头发长度信息。
  54. AttributeItem对应的Type为 —— 0:光头,1:短发,2:中发,3:长发,4:绑发。
  55. * @param AttributeItem $Bang 刘海信息。
  56. AttributeItem对应的Type为 —— 0:无刘海,1:有刘海。
  57. * @param AttributeItem $Color 头发颜色信息。
  58. AttributeItem对应的Type为 —— 0:黑色,1:金色,2:棕色,3:灰白色。
  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 = new AttributeItem();
  73. $this->Length->deserialize($param["Length"]);
  74. }
  75. if (array_key_exists("Bang",$param) and $param["Bang"] !== null) {
  76. $this->Bang = new AttributeItem();
  77. $this->Bang->deserialize($param["Bang"]);
  78. }
  79. if (array_key_exists("Color",$param) and $param["Color"] !== null) {
  80. $this->Color = new AttributeItem();
  81. $this->Color->deserialize($param["Color"]);
  82. }
  83. }
  84. }