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