IntentionQuestionResult.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. * 意愿核身问答模式结果
  21. *
  22. * @method string getFinalResultCode() 获取意愿核身最终结果:
  23. 0:认证通过,-1:认证未通过,-2:浏览器内核不兼容,无法进行意愿校验
  24. 注意:此字段可能返回 null,表示取不到有效值。
  25. * @method void setFinalResultCode(string $FinalResultCode) 设置意愿核身最终结果:
  26. 0:认证通过,-1:认证未通过,-2:浏览器内核不兼容,无法进行意愿校验
  27. 注意:此字段可能返回 null,表示取不到有效值。
  28. * @method string getVideo() 获取视频base64(其中包含全程问题和回答音频,mp4格式)
  29. 注意:此字段可能返回 null,表示取不到有效值。
  30. * @method void setVideo(string $Video) 设置视频base64(其中包含全程问题和回答音频,mp4格式)
  31. 注意:此字段可能返回 null,表示取不到有效值。
  32. * @method array getScreenShot() 获取屏幕截图base64列表
  33. 注意:此字段可能返回 null,表示取不到有效值。
  34. * @method void setScreenShot(array $ScreenShot) 设置屏幕截图base64列表
  35. 注意:此字段可能返回 null,表示取不到有效值。
  36. * @method array getResultCode() 获取和答案匹配结果列表
  37. 0:成功,-1:不匹配
  38. 注意:此字段可能返回 null,表示取不到有效值。
  39. * @method void setResultCode(array $ResultCode) 设置和答案匹配结果列表
  40. 0:成功,-1:不匹配
  41. 注意:此字段可能返回 null,表示取不到有效值。
  42. * @method array getAsrResult() 获取回答问题语音识别结果列表
  43. 注意:此字段可能返回 null,表示取不到有效值。
  44. * @method void setAsrResult(array $AsrResult) 设置回答问题语音识别结果列表
  45. 注意:此字段可能返回 null,表示取不到有效值。
  46. * @method array getAudios() 获取答案录音音频
  47. 注意:此字段可能返回 null,表示取不到有效值。
  48. * @method void setAudios(array $Audios) 设置答案录音音频
  49. 注意:此字段可能返回 null,表示取不到有效值。
  50. */
  51. class IntentionQuestionResult extends AbstractModel
  52. {
  53. /**
  54. * @var string 意愿核身最终结果:
  55. 0:认证通过,-1:认证未通过,-2:浏览器内核不兼容,无法进行意愿校验
  56. 注意:此字段可能返回 null,表示取不到有效值。
  57. */
  58. public $FinalResultCode;
  59. /**
  60. * @var string 视频base64(其中包含全程问题和回答音频,mp4格式)
  61. 注意:此字段可能返回 null,表示取不到有效值。
  62. */
  63. public $Video;
  64. /**
  65. * @var array 屏幕截图base64列表
  66. 注意:此字段可能返回 null,表示取不到有效值。
  67. */
  68. public $ScreenShot;
  69. /**
  70. * @var array 和答案匹配结果列表
  71. 0:成功,-1:不匹配
  72. 注意:此字段可能返回 null,表示取不到有效值。
  73. */
  74. public $ResultCode;
  75. /**
  76. * @var array 回答问题语音识别结果列表
  77. 注意:此字段可能返回 null,表示取不到有效值。
  78. */
  79. public $AsrResult;
  80. /**
  81. * @var array 答案录音音频
  82. 注意:此字段可能返回 null,表示取不到有效值。
  83. */
  84. public $Audios;
  85. /**
  86. * @param string $FinalResultCode 意愿核身最终结果:
  87. 0:认证通过,-1:认证未通过,-2:浏览器内核不兼容,无法进行意愿校验
  88. 注意:此字段可能返回 null,表示取不到有效值。
  89. * @param string $Video 视频base64(其中包含全程问题和回答音频,mp4格式)
  90. 注意:此字段可能返回 null,表示取不到有效值。
  91. * @param array $ScreenShot 屏幕截图base64列表
  92. 注意:此字段可能返回 null,表示取不到有效值。
  93. * @param array $ResultCode 和答案匹配结果列表
  94. 0:成功,-1:不匹配
  95. 注意:此字段可能返回 null,表示取不到有效值。
  96. * @param array $AsrResult 回答问题语音识别结果列表
  97. 注意:此字段可能返回 null,表示取不到有效值。
  98. * @param array $Audios 答案录音音频
  99. 注意:此字段可能返回 null,表示取不到有效值。
  100. */
  101. function __construct()
  102. {
  103. }
  104. /**
  105. * For internal only. DO NOT USE IT.
  106. */
  107. public function deserialize($param)
  108. {
  109. if ($param === null) {
  110. return;
  111. }
  112. if (array_key_exists("FinalResultCode",$param) and $param["FinalResultCode"] !== null) {
  113. $this->FinalResultCode = $param["FinalResultCode"];
  114. }
  115. if (array_key_exists("Video",$param) and $param["Video"] !== null) {
  116. $this->Video = $param["Video"];
  117. }
  118. if (array_key_exists("ScreenShot",$param) and $param["ScreenShot"] !== null) {
  119. $this->ScreenShot = $param["ScreenShot"];
  120. }
  121. if (array_key_exists("ResultCode",$param) and $param["ResultCode"] !== null) {
  122. $this->ResultCode = $param["ResultCode"];
  123. }
  124. if (array_key_exists("AsrResult",$param) and $param["AsrResult"] !== null) {
  125. $this->AsrResult = $param["AsrResult"];
  126. }
  127. if (array_key_exists("Audios",$param) and $param["Audios"] !== null) {
  128. $this->Audios = $param["Audios"];
  129. }
  130. }
  131. }