'OwnerId', 'appId' => 'AppId', 'appUid' => 'AppUid', ]; public function validate() { } public function toMap() { $res = []; if (null !== $this->ownerId) { $res['OwnerId'] = $this->ownerId; } if (null !== $this->appId) { $res['AppId'] = $this->appId; } if (null !== $this->appUid) { $res['AppUid'] = $this->appUid; } return $res; } /** * @param array $map * * @return CreateBoardRequest */ public static function fromMap($map = []) { $model = new self(); if (isset($map['OwnerId'])) { $model->ownerId = $map['OwnerId']; } if (isset($map['AppId'])) { $model->appId = $map['AppId']; } if (isset($map['AppUid'])) { $model->appUid = $map['AppUid']; } return $model; } }