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