DetectAuthRequest.php 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <?php
  2. /*
  3. * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. namespace TencentCloud\Faceid\V20180301\Models;
  18. use TencentCloud\Common\AbstractModel;
  19. /**
  20. * DetectAuth请求参数结构体
  21. *
  22. * @method string getRuleId() 获取用于细分客户使用场景,申请开通服务后,可以在腾讯云慧眼人脸核身控制台(https://console.cloud.tencent.com/faceid) 自助接入里面创建,审核通过后即可调用。如有疑问,请添加[腾讯云人脸核身小助手](https://cloud.tencent.com/document/product/1007/56130)进行咨询。
  23. * @method void setRuleId(string $RuleId) 设置用于细分客户使用场景,申请开通服务后,可以在腾讯云慧眼人脸核身控制台(https://console.cloud.tencent.com/faceid) 自助接入里面创建,审核通过后即可调用。如有疑问,请添加[腾讯云人脸核身小助手](https://cloud.tencent.com/document/product/1007/56130)进行咨询。
  24. * @method string getTerminalType() 获取本接口不需要传递此参数。
  25. * @method void setTerminalType(string $TerminalType) 设置本接口不需要传递此参数。
  26. * @method string getIdCard() 获取身份标识(未使用OCR服务时,必须传入)。
  27. 规则:a-zA-Z0-9组合。最长长度32位。
  28. * @method void setIdCard(string $IdCard) 设置身份标识(未使用OCR服务时,必须传入)。
  29. 规则:a-zA-Z0-9组合。最长长度32位。
  30. * @method string getName() 获取姓名。(未使用OCR服务时,必须传入)最长长度32位。中文请使用UTF-8编码。
  31. * @method void setName(string $Name) 设置姓名。(未使用OCR服务时,必须传入)最长长度32位。中文请使用UTF-8编码。
  32. * @method string getRedirectUrl() 获取认证结束后重定向的回调链接地址。最长长度1024位。
  33. * @method void setRedirectUrl(string $RedirectUrl) 设置认证结束后重定向的回调链接地址。最长长度1024位。
  34. * @method string getExtra() 获取透传字段,在获取验证结果时返回。
  35. * @method void setExtra(string $Extra) 设置透传字段,在获取验证结果时返回。
  36. * @method string getImageBase64() 获取用于人脸比对的照片,图片的Base64值;
  37. Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。请使用标准的Base64编码方式(带=补位),编码规范参考RFC4648。
  38. * @method void setImageBase64(string $ImageBase64) 设置用于人脸比对的照片,图片的Base64值;
  39. Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。请使用标准的Base64编码方式(带=补位),编码规范参考RFC4648。
  40. * @method Encryption getEncryption() 获取敏感数据加密信息。对传入信息(姓名、身份证号)有加密需求的用户可使用此参数,详情请点击左侧链接。
  41. * @method void setEncryption(Encryption $Encryption) 设置敏感数据加密信息。对传入信息(姓名、身份证号)有加密需求的用户可使用此参数,详情请点击左侧链接。
  42. * @method string getIntentionVerifyText() 获取意愿核身使用的文案,若未使用意愿核身功能,该字段无需传入。默认为空,最长可接受120的字符串长度。
  43. * @method void setIntentionVerifyText(string $IntentionVerifyText) 设置意愿核身使用的文案,若未使用意愿核身功能,该字段无需传入。默认为空,最长可接受120的字符串长度。
  44. * @method array getIntentionQuestions() 获取意愿核身过程中播报文本/问题、用户朗读/回答的文本,当前支持一个播报文本+回答文本。
  45. * @method void setIntentionQuestions(array $IntentionQuestions) 设置意愿核身过程中播报文本/问题、用户朗读/回答的文本,当前支持一个播报文本+回答文本。
  46. */
  47. class DetectAuthRequest extends AbstractModel
  48. {
  49. /**
  50. * @var string 用于细分客户使用场景,申请开通服务后,可以在腾讯云慧眼人脸核身控制台(https://console.cloud.tencent.com/faceid) 自助接入里面创建,审核通过后即可调用。如有疑问,请添加[腾讯云人脸核身小助手](https://cloud.tencent.com/document/product/1007/56130)进行咨询。
  51. */
  52. public $RuleId;
  53. /**
  54. * @var string 本接口不需要传递此参数。
  55. */
  56. public $TerminalType;
  57. /**
  58. * @var string 身份标识(未使用OCR服务时,必须传入)。
  59. 规则:a-zA-Z0-9组合。最长长度32位。
  60. */
  61. public $IdCard;
  62. /**
  63. * @var string 姓名。(未使用OCR服务时,必须传入)最长长度32位。中文请使用UTF-8编码。
  64. */
  65. public $Name;
  66. /**
  67. * @var string 认证结束后重定向的回调链接地址。最长长度1024位。
  68. */
  69. public $RedirectUrl;
  70. /**
  71. * @var string 透传字段,在获取验证结果时返回。
  72. */
  73. public $Extra;
  74. /**
  75. * @var string 用于人脸比对的照片,图片的Base64值;
  76. Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。请使用标准的Base64编码方式(带=补位),编码规范参考RFC4648。
  77. */
  78. public $ImageBase64;
  79. /**
  80. * @var Encryption 敏感数据加密信息。对传入信息(姓名、身份证号)有加密需求的用户可使用此参数,详情请点击左侧链接。
  81. */
  82. public $Encryption;
  83. /**
  84. * @var string 意愿核身使用的文案,若未使用意愿核身功能,该字段无需传入。默认为空,最长可接受120的字符串长度。
  85. */
  86. public $IntentionVerifyText;
  87. /**
  88. * @var array 意愿核身过程中播报文本/问题、用户朗读/回答的文本,当前支持一个播报文本+回答文本。
  89. */
  90. public $IntentionQuestions;
  91. /**
  92. * @param string $RuleId 用于细分客户使用场景,申请开通服务后,可以在腾讯云慧眼人脸核身控制台(https://console.cloud.tencent.com/faceid) 自助接入里面创建,审核通过后即可调用。如有疑问,请添加[腾讯云人脸核身小助手](https://cloud.tencent.com/document/product/1007/56130)进行咨询。
  93. * @param string $TerminalType 本接口不需要传递此参数。
  94. * @param string $IdCard 身份标识(未使用OCR服务时,必须传入)。
  95. 规则:a-zA-Z0-9组合。最长长度32位。
  96. * @param string $Name 姓名。(未使用OCR服务时,必须传入)最长长度32位。中文请使用UTF-8编码。
  97. * @param string $RedirectUrl 认证结束后重定向的回调链接地址。最长长度1024位。
  98. * @param string $Extra 透传字段,在获取验证结果时返回。
  99. * @param string $ImageBase64 用于人脸比对的照片,图片的Base64值;
  100. Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。请使用标准的Base64编码方式(带=补位),编码规范参考RFC4648。
  101. * @param Encryption $Encryption 敏感数据加密信息。对传入信息(姓名、身份证号)有加密需求的用户可使用此参数,详情请点击左侧链接。
  102. * @param string $IntentionVerifyText 意愿核身使用的文案,若未使用意愿核身功能,该字段无需传入。默认为空,最长可接受120的字符串长度。
  103. * @param array $IntentionQuestions 意愿核身过程中播报文本/问题、用户朗读/回答的文本,当前支持一个播报文本+回答文本。
  104. */
  105. function __construct()
  106. {
  107. }
  108. /**
  109. * For internal only. DO NOT USE IT.
  110. */
  111. public function deserialize($param)
  112. {
  113. if ($param === null) {
  114. return;
  115. }
  116. if (array_key_exists("RuleId",$param) and $param["RuleId"] !== null) {
  117. $this->RuleId = $param["RuleId"];
  118. }
  119. if (array_key_exists("TerminalType",$param) and $param["TerminalType"] !== null) {
  120. $this->TerminalType = $param["TerminalType"];
  121. }
  122. if (array_key_exists("IdCard",$param) and $param["IdCard"] !== null) {
  123. $this->IdCard = $param["IdCard"];
  124. }
  125. if (array_key_exists("Name",$param) and $param["Name"] !== null) {
  126. $this->Name = $param["Name"];
  127. }
  128. if (array_key_exists("RedirectUrl",$param) and $param["RedirectUrl"] !== null) {
  129. $this->RedirectUrl = $param["RedirectUrl"];
  130. }
  131. if (array_key_exists("Extra",$param) and $param["Extra"] !== null) {
  132. $this->Extra = $param["Extra"];
  133. }
  134. if (array_key_exists("ImageBase64",$param) and $param["ImageBase64"] !== null) {
  135. $this->ImageBase64 = $param["ImageBase64"];
  136. }
  137. if (array_key_exists("Encryption",$param) and $param["Encryption"] !== null) {
  138. $this->Encryption = new Encryption();
  139. $this->Encryption->deserialize($param["Encryption"]);
  140. }
  141. if (array_key_exists("IntentionVerifyText",$param) and $param["IntentionVerifyText"] !== null) {
  142. $this->IntentionVerifyText = $param["IntentionVerifyText"];
  143. }
  144. if (array_key_exists("IntentionQuestions",$param) and $param["IntentionQuestions"] !== null) {
  145. $this->IntentionQuestions = [];
  146. foreach ($param["IntentionQuestions"] as $key => $value){
  147. $obj = new IntentionQuestion();
  148. $obj->deserialize($value);
  149. array_push($this->IntentionQuestions, $obj);
  150. }
  151. }
  152. }
  153. }