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