GetEidResultRequest.php 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. * GetEidResult请求参数结构体
  21. *
  22. * @method string getEidToken() 获取E证通流程的唯一标识,调用GetEidToken接口时生成。
  23. * @method void setEidToken(string $EidToken) 设置E证通流程的唯一标识,调用GetEidToken接口时生成。
  24. * @method string getInfoType() 获取指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证信息;3:最佳截图信息;5:意愿核身朗读模式相关结果;6:意愿核身问答模式相关结果)。
  25. 如 13表示拉取文本类、最佳截图信息。
  26. 默认值:0
  27. * @method void setInfoType(string $InfoType) 设置指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证信息;3:最佳截图信息;5:意愿核身朗读模式相关结果;6:意愿核身问答模式相关结果)。
  28. 如 13表示拉取文本类、最佳截图信息。
  29. 默认值:0
  30. * @method integer getBestFramesCount() 获取从活体视频中截取一定张数的最佳帧。默认为0,最大为3,超出3的最多只给3张。(InfoType需要包含3)
  31. * @method void setBestFramesCount(integer $BestFramesCount) 设置从活体视频中截取一定张数的最佳帧。默认为0,最大为3,超出3的最多只给3张。(InfoType需要包含3)
  32. */
  33. class GetEidResultRequest extends AbstractModel
  34. {
  35. /**
  36. * @var string E证通流程的唯一标识,调用GetEidToken接口时生成。
  37. */
  38. public $EidToken;
  39. /**
  40. * @var string 指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证信息;3:最佳截图信息;5:意愿核身朗读模式相关结果;6:意愿核身问答模式相关结果)。
  41. 如 13表示拉取文本类、最佳截图信息。
  42. 默认值:0
  43. */
  44. public $InfoType;
  45. /**
  46. * @var integer 从活体视频中截取一定张数的最佳帧。默认为0,最大为3,超出3的最多只给3张。(InfoType需要包含3)
  47. */
  48. public $BestFramesCount;
  49. /**
  50. * @param string $EidToken E证通流程的唯一标识,调用GetEidToken接口时生成。
  51. * @param string $InfoType 指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证信息;3:最佳截图信息;5:意愿核身朗读模式相关结果;6:意愿核身问答模式相关结果)。
  52. 如 13表示拉取文本类、最佳截图信息。
  53. 默认值:0
  54. * @param integer $BestFramesCount 从活体视频中截取一定张数的最佳帧。默认为0,最大为3,超出3的最多只给3张。(InfoType需要包含3)
  55. */
  56. function __construct()
  57. {
  58. }
  59. /**
  60. * For internal only. DO NOT USE IT.
  61. */
  62. public function deserialize($param)
  63. {
  64. if ($param === null) {
  65. return;
  66. }
  67. if (array_key_exists("EidToken",$param) and $param["EidToken"] !== null) {
  68. $this->EidToken = $param["EidToken"];
  69. }
  70. if (array_key_exists("InfoType",$param) and $param["InfoType"] !== null) {
  71. $this->InfoType = $param["InfoType"];
  72. }
  73. if (array_key_exists("BestFramesCount",$param) and $param["BestFramesCount"] !== null) {
  74. $this->BestFramesCount = $param["BestFramesCount"];
  75. }
  76. }
  77. }