ApplySdkVerificationTokenRequest.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. * ApplySdkVerificationToken请求参数结构体
  21. *
  22. * @method boolean getNeedVerifyIdCard() 获取是否需要身份证鉴伪,如果不需要,则仅做证件OCR。当前仅IdCardType为HK支持鉴伪。
  23. * @method void setNeedVerifyIdCard(boolean $NeedVerifyIdCard) 设置是否需要身份证鉴伪,如果不需要,则仅做证件OCR。当前仅IdCardType为HK支持鉴伪。
  24. * @method string getIdCardType() 获取卡证类型,当前仅支持HK(香港身份证),ML(马来西亚身份证),PhilippinesVoteID(菲律宾选民卡),PhilippinesDrivingLicense(菲律宾驾驶证)。默认为HK。
  25. * @method void setIdCardType(string $IdCardType) 设置卡证类型,当前仅支持HK(香港身份证),ML(马来西亚身份证),PhilippinesVoteID(菲律宾选民卡),PhilippinesDrivingLicense(菲律宾驾驶证)。默认为HK。
  26. * @method boolean getDisableChangeOcrResult() 获取是否允许用户修改ocr结果,默认false,允许。
  27. * @method void setDisableChangeOcrResult(boolean $DisableChangeOcrResult) 设置是否允许用户修改ocr结果,默认false,允许。
  28. * @method boolean getDisableCheckOcrWarnings() 获取是否关闭OCR告警,默认false,不关闭。如果为false开启OCR告警,我们会根据Ocr的告警信息进行拦截,当NeedVerifyIdCard为true时该字段将为true。
  29. * @method void setDisableCheckOcrWarnings(boolean $DisableCheckOcrWarnings) 设置是否关闭OCR告警,默认false,不关闭。如果为false开启OCR告警,我们会根据Ocr的告警信息进行拦截,当NeedVerifyIdCard为true时该字段将为true。
  30. * @method string getExtra() 获取透传字段,在获取验证结果时返回,最长1024位。
  31. * @method void setExtra(string $Extra) 设置透传字段,在获取验证结果时返回,最长1024位。
  32. */
  33. class ApplySdkVerificationTokenRequest extends AbstractModel
  34. {
  35. /**
  36. * @var boolean 是否需要身份证鉴伪,如果不需要,则仅做证件OCR。当前仅IdCardType为HK支持鉴伪。
  37. */
  38. public $NeedVerifyIdCard;
  39. /**
  40. * @var string 卡证类型,当前仅支持HK(香港身份证),ML(马来西亚身份证),PhilippinesVoteID(菲律宾选民卡),PhilippinesDrivingLicense(菲律宾驾驶证)。默认为HK。
  41. */
  42. public $IdCardType;
  43. /**
  44. * @var boolean 是否允许用户修改ocr结果,默认false,允许。
  45. */
  46. public $DisableChangeOcrResult;
  47. /**
  48. * @var boolean 是否关闭OCR告警,默认false,不关闭。如果为false开启OCR告警,我们会根据Ocr的告警信息进行拦截,当NeedVerifyIdCard为true时该字段将为true。
  49. */
  50. public $DisableCheckOcrWarnings;
  51. /**
  52. * @var string 透传字段,在获取验证结果时返回,最长1024位。
  53. */
  54. public $Extra;
  55. /**
  56. * @param boolean $NeedVerifyIdCard 是否需要身份证鉴伪,如果不需要,则仅做证件OCR。当前仅IdCardType为HK支持鉴伪。
  57. * @param string $IdCardType 卡证类型,当前仅支持HK(香港身份证),ML(马来西亚身份证),PhilippinesVoteID(菲律宾选民卡),PhilippinesDrivingLicense(菲律宾驾驶证)。默认为HK。
  58. * @param boolean $DisableChangeOcrResult 是否允许用户修改ocr结果,默认false,允许。
  59. * @param boolean $DisableCheckOcrWarnings 是否关闭OCR告警,默认false,不关闭。如果为false开启OCR告警,我们会根据Ocr的告警信息进行拦截,当NeedVerifyIdCard为true时该字段将为true。
  60. * @param string $Extra 透传字段,在获取验证结果时返回,最长1024位。
  61. */
  62. function __construct()
  63. {
  64. }
  65. /**
  66. * For internal only. DO NOT USE IT.
  67. */
  68. public function deserialize($param)
  69. {
  70. if ($param === null) {
  71. return;
  72. }
  73. if (array_key_exists("NeedVerifyIdCard",$param) and $param["NeedVerifyIdCard"] !== null) {
  74. $this->NeedVerifyIdCard = $param["NeedVerifyIdCard"];
  75. }
  76. if (array_key_exists("IdCardType",$param) and $param["IdCardType"] !== null) {
  77. $this->IdCardType = $param["IdCardType"];
  78. }
  79. if (array_key_exists("DisableChangeOcrResult",$param) and $param["DisableChangeOcrResult"] !== null) {
  80. $this->DisableChangeOcrResult = $param["DisableChangeOcrResult"];
  81. }
  82. if (array_key_exists("DisableCheckOcrWarnings",$param) and $param["DisableCheckOcrWarnings"] !== null) {
  83. $this->DisableCheckOcrWarnings = $param["DisableCheckOcrWarnings"];
  84. }
  85. if (array_key_exists("Extra",$param) and $param["Extra"] !== null) {
  86. $this->Extra = $param["Extra"];
  87. }
  88. }
  89. }