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