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