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