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