12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- namespace TencentCloud\Faceid\V20180301\Models;
- use TencentCloud\Common\AbstractModel;
- class DetectInfoBestFrame extends AbstractModel
- {
-
- public $BestFrame;
-
- public $BestFrames;
-
- function __construct()
- {
- }
-
- public function deserialize($param)
- {
- if ($param === null) {
- return;
- }
- if (array_key_exists("BestFrame",$param) and $param["BestFrame"] !== null) {
- $this->BestFrame = $param["BestFrame"];
- }
- if (array_key_exists("BestFrames",$param) and $param["BestFrames"] !== null) {
- $this->BestFrames = $param["BestFrames"];
- }
- }
- }
|