GetEidTokenConfig.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. * 获取token时的的配置
  21. *
  22. * @method string getInputType() 获取姓名身份证输入方式。
  23. 1:传身份证正反面OCR
  24. 2:传身份证正面OCR
  25. 3:用户手动输入
  26. 4:客户后台传入
  27. 默认1
  28. 注:使用OCR时仅支持用户修改结果中的姓名
  29. * @method void setInputType(string $InputType) 设置姓名身份证输入方式。
  30. 1:传身份证正反面OCR
  31. 2:传身份证正面OCR
  32. 3:用户手动输入
  33. 4:客户后台传入
  34. 默认1
  35. 注:使用OCR时仅支持用户修改结果中的姓名
  36. * @method boolean getUseIntentionVerify() 获取是否使用意愿核身,默认不使用。注意:如开启使用,则计费标签按【意愿核身】计费标签计价;如不开启,则计费标签按【E证通】计费标签计价,价格详见:[价格说明](https://cloud.tencent.com/document/product/1007/56804)。
  37. * @method void setUseIntentionVerify(boolean $UseIntentionVerify) 设置是否使用意愿核身,默认不使用。注意:如开启使用,则计费标签按【意愿核身】计费标签计价;如不开启,则计费标签按【E证通】计费标签计价,价格详见:[价格说明](https://cloud.tencent.com/document/product/1007/56804)。
  38. * @method string getIntentionMode() 获取意愿核身模式。枚举值:1( 朗读模式),2(问答模式) 。默认值1
  39. * @method void setIntentionMode(string $IntentionMode) 设置意愿核身模式。枚举值:1( 朗读模式),2(问答模式) 。默认值1
  40. * @method string getIntentionVerifyText() 获取意愿核身朗读模式使用的文案,若未使用意愿核身朗读功能,该字段无需传入。默认为空,最长可接受120的字符串长度。
  41. * @method void setIntentionVerifyText(string $IntentionVerifyText) 设置意愿核身朗读模式使用的文案,若未使用意愿核身朗读功能,该字段无需传入。默认为空,最长可接受120的字符串长度。
  42. * @method array getIntentionQuestions() 获取意愿核身问答模式的配置列表。当前仅支持一个问答。
  43. * @method void setIntentionQuestions(array $IntentionQuestions) 设置意愿核身问答模式的配置列表。当前仅支持一个问答。
  44. * @method boolean getIntentionRecognition() 获取意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认不开启。
  45. * @method void setIntentionRecognition(boolean $IntentionRecognition) 设置意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认不开启。
  46. */
  47. class GetEidTokenConfig extends AbstractModel
  48. {
  49. /**
  50. * @var string 姓名身份证输入方式。
  51. 1:传身份证正反面OCR
  52. 2:传身份证正面OCR
  53. 3:用户手动输入
  54. 4:客户后台传入
  55. 默认1
  56. 注:使用OCR时仅支持用户修改结果中的姓名
  57. */
  58. public $InputType;
  59. /**
  60. * @var boolean 是否使用意愿核身,默认不使用。注意:如开启使用,则计费标签按【意愿核身】计费标签计价;如不开启,则计费标签按【E证通】计费标签计价,价格详见:[价格说明](https://cloud.tencent.com/document/product/1007/56804)。
  61. */
  62. public $UseIntentionVerify;
  63. /**
  64. * @var string 意愿核身模式。枚举值:1( 朗读模式),2(问答模式) 。默认值1
  65. */
  66. public $IntentionMode;
  67. /**
  68. * @var string 意愿核身朗读模式使用的文案,若未使用意愿核身朗读功能,该字段无需传入。默认为空,最长可接受120的字符串长度。
  69. */
  70. public $IntentionVerifyText;
  71. /**
  72. * @var array 意愿核身问答模式的配置列表。当前仅支持一个问答。
  73. */
  74. public $IntentionQuestions;
  75. /**
  76. * @var boolean 意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认不开启。
  77. */
  78. public $IntentionRecognition;
  79. /**
  80. * @param string $InputType 姓名身份证输入方式。
  81. 1:传身份证正反面OCR
  82. 2:传身份证正面OCR
  83. 3:用户手动输入
  84. 4:客户后台传入
  85. 默认1
  86. 注:使用OCR时仅支持用户修改结果中的姓名
  87. * @param boolean $UseIntentionVerify 是否使用意愿核身,默认不使用。注意:如开启使用,则计费标签按【意愿核身】计费标签计价;如不开启,则计费标签按【E证通】计费标签计价,价格详见:[价格说明](https://cloud.tencent.com/document/product/1007/56804)。
  88. * @param string $IntentionMode 意愿核身模式。枚举值:1( 朗读模式),2(问答模式) 。默认值1
  89. * @param string $IntentionVerifyText 意愿核身朗读模式使用的文案,若未使用意愿核身朗读功能,该字段无需传入。默认为空,最长可接受120的字符串长度。
  90. * @param array $IntentionQuestions 意愿核身问答模式的配置列表。当前仅支持一个问答。
  91. * @param boolean $IntentionRecognition 意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认不开启。
  92. */
  93. function __construct()
  94. {
  95. }
  96. /**
  97. * For internal only. DO NOT USE IT.
  98. */
  99. public function deserialize($param)
  100. {
  101. if ($param === null) {
  102. return;
  103. }
  104. if (array_key_exists("InputType",$param) and $param["InputType"] !== null) {
  105. $this->InputType = $param["InputType"];
  106. }
  107. if (array_key_exists("UseIntentionVerify",$param) and $param["UseIntentionVerify"] !== null) {
  108. $this->UseIntentionVerify = $param["UseIntentionVerify"];
  109. }
  110. if (array_key_exists("IntentionMode",$param) and $param["IntentionMode"] !== null) {
  111. $this->IntentionMode = $param["IntentionMode"];
  112. }
  113. if (array_key_exists("IntentionVerifyText",$param) and $param["IntentionVerifyText"] !== null) {
  114. $this->IntentionVerifyText = $param["IntentionVerifyText"];
  115. }
  116. if (array_key_exists("IntentionQuestions",$param) and $param["IntentionQuestions"] !== null) {
  117. $this->IntentionQuestions = [];
  118. foreach ($param["IntentionQuestions"] as $key => $value){
  119. $obj = new IntentionQuestion();
  120. $obj->deserialize($value);
  121. array_push($this->IntentionQuestions, $obj);
  122. }
  123. }
  124. if (array_key_exists("IntentionRecognition",$param) and $param["IntentionRecognition"] !== null) {
  125. $this->IntentionRecognition = $param["IntentionRecognition"];
  126. }
  127. }
  128. }