123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?php
- namespace TencentCloud\Iai\V20180301\Models;
- use TencentCloud\Common\AbstractModel;
- class PersonInfo extends AbstractModel
- {
-
- public $PersonName;
-
- public $PersonId;
-
- public $Gender;
-
- public $PersonExDescriptions;
-
- public $FaceIds;
-
- public $CreationTimestamp;
-
- function __construct()
- {
- }
-
- public function deserialize($param)
- {
- if ($param === null) {
- return;
- }
- if (array_key_exists("PersonName",$param) and $param["PersonName"] !== null) {
- $this->PersonName = $param["PersonName"];
- }
- if (array_key_exists("PersonId",$param) and $param["PersonId"] !== null) {
- $this->PersonId = $param["PersonId"];
- }
- if (array_key_exists("Gender",$param) and $param["Gender"] !== null) {
- $this->Gender = $param["Gender"];
- }
- if (array_key_exists("PersonExDescriptions",$param) and $param["PersonExDescriptions"] !== null) {
- $this->PersonExDescriptions = $param["PersonExDescriptions"];
- }
- if (array_key_exists("FaceIds",$param) and $param["FaceIds"] !== null) {
- $this->FaceIds = $param["FaceIds"];
- }
- if (array_key_exists("CreationTimestamp",$param) and $param["CreationTimestamp"] !== null) {
- $this->CreationTimestamp = $param["CreationTimestamp"];
- }
- }
- }
|