123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?php
- namespace TencentCloud\Faceid\V20180301\Models;
- use TencentCloud\Common\AbstractModel;
- class PhoneVerificationRequest extends AbstractModel
- {
-
- public $IdCard;
-
- public $Name;
-
- public $Phone;
-
- public $CiphertextBlob;
-
- public $EncryptList;
-
- public $Iv;
-
- function __construct()
- {
- }
-
- public function deserialize($param)
- {
- if ($param === null) {
- return;
- }
- if (array_key_exists("IdCard",$param) and $param["IdCard"] !== null) {
- $this->IdCard = $param["IdCard"];
- }
- if (array_key_exists("Name",$param) and $param["Name"] !== null) {
- $this->Name = $param["Name"];
- }
- if (array_key_exists("Phone",$param) and $param["Phone"] !== null) {
- $this->Phone = $param["Phone"];
- }
- if (array_key_exists("CiphertextBlob",$param) and $param["CiphertextBlob"] !== null) {
- $this->CiphertextBlob = $param["CiphertextBlob"];
- }
- if (array_key_exists("EncryptList",$param) and $param["EncryptList"] !== null) {
- $this->EncryptList = $param["EncryptList"];
- }
- if (array_key_exists("Iv",$param) and $param["Iv"] !== null) {
- $this->Iv = $param["Iv"];
- }
- }
- }
|