123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?php
- namespace TencentCloud\Iai\V20180301\Models;
- use TencentCloud\Common\AbstractModel;
- class Eye extends AbstractModel
- {
-
- public $Glass;
-
- public $EyeOpen;
-
- public $EyelidType;
-
- public $EyeSize;
-
- function __construct()
- {
- }
-
- public function deserialize($param)
- {
- if ($param === null) {
- return;
- }
- if (array_key_exists("Glass",$param) and $param["Glass"] !== null) {
- $this->Glass = new AttributeItem();
- $this->Glass->deserialize($param["Glass"]);
- }
- if (array_key_exists("EyeOpen",$param) and $param["EyeOpen"] !== null) {
- $this->EyeOpen = new AttributeItem();
- $this->EyeOpen->deserialize($param["EyeOpen"]);
- }
- if (array_key_exists("EyelidType",$param) and $param["EyelidType"] !== null) {
- $this->EyelidType = new AttributeItem();
- $this->EyelidType->deserialize($param["EyelidType"]);
- }
- if (array_key_exists("EyeSize",$param) and $param["EyeSize"] !== null) {
- $this->EyeSize = new AttributeItem();
- $this->EyeSize->deserialize($param["EyeSize"]);
- }
- }
- }
|