Hat.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 getStyle() 获取帽子佩戴状态信息。
  23. AttributeItem对应的Type为 —— 0:不戴帽子,1:普通帽子,2:头盔,3:保安帽。
  24. * @method void setStyle(AttributeItem $Style) 设置帽子佩戴状态信息。
  25. AttributeItem对应的Type为 —— 0:不戴帽子,1:普通帽子,2:头盔,3:保安帽。
  26. * @method AttributeItem getColor() 获取帽子颜色。
  27. AttributeItem对应的Type为 —— 0:不戴帽子,1:红色系,2:黄色系,3:蓝色系,4:黑色系,5:灰白色系,6:混色系子。
  28. * @method void setColor(AttributeItem $Color) 设置帽子颜色。
  29. AttributeItem对应的Type为 —— 0:不戴帽子,1:红色系,2:黄色系,3:蓝色系,4:黑色系,5:灰白色系,6:混色系子。
  30. */
  31. class Hat extends AbstractModel
  32. {
  33. /**
  34. * @var AttributeItem 帽子佩戴状态信息。
  35. AttributeItem对应的Type为 —— 0:不戴帽子,1:普通帽子,2:头盔,3:保安帽。
  36. */
  37. public $Style;
  38. /**
  39. * @var AttributeItem 帽子颜色。
  40. AttributeItem对应的Type为 —— 0:不戴帽子,1:红色系,2:黄色系,3:蓝色系,4:黑色系,5:灰白色系,6:混色系子。
  41. */
  42. public $Color;
  43. /**
  44. * @param AttributeItem $Style 帽子佩戴状态信息。
  45. AttributeItem对应的Type为 —— 0:不戴帽子,1:普通帽子,2:头盔,3:保安帽。
  46. * @param AttributeItem $Color 帽子颜色。
  47. AttributeItem对应的Type为 —— 0:不戴帽子,1:红色系,2:黄色系,3:蓝色系,4:黑色系,5:灰白色系,6:混色系子。
  48. */
  49. function __construct()
  50. {
  51. }
  52. /**
  53. * For internal only. DO NOT USE IT.
  54. */
  55. public function deserialize($param)
  56. {
  57. if ($param === null) {
  58. return;
  59. }
  60. if (array_key_exists("Style",$param) and $param["Style"] !== null) {
  61. $this->Style = new AttributeItem();
  62. $this->Style->deserialize($param["Style"]);
  63. }
  64. if (array_key_exists("Color",$param) and $param["Color"] !== null) {
  65. $this->Color = new AttributeItem();
  66. $this->Color->deserialize($param["Color"]);
  67. }
  68. }
  69. }