123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
- namespace TencentCloud\Iai\V20200303\Models;
- use TencentCloud\Common\AbstractModel;
- class Hat extends AbstractModel
- {
-
- public $Style;
-
- public $Color;
-
- function __construct()
- {
- }
-
- public function deserialize($param)
- {
- if ($param === null) {
- return;
- }
- if (array_key_exists("Style",$param) and $param["Style"] !== null) {
- $this->Style = new AttributeItem();
- $this->Style->deserialize($param["Style"]);
- }
- if (array_key_exists("Color",$param) and $param["Color"] !== null) {
- $this->Color = new AttributeItem();
- $this->Color->deserialize($param["Color"]);
- }
- }
- }
|