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