DetectInfoBestFrame.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 getBestFrame() 获取活体比对最佳帧Base64编码。
  23. 注意:此字段可能返回 null,表示取不到有效值。
  24. * @method void setBestFrame(string $BestFrame) 设置活体比对最佳帧Base64编码。
  25. 注意:此字段可能返回 null,表示取不到有效值。
  26. * @method array getBestFrames() 获取自截帧Base64编码数组。
  27. 注意:此字段可能返回 null,表示取不到有效值。
  28. * @method void setBestFrames(array $BestFrames) 设置自截帧Base64编码数组。
  29. 注意:此字段可能返回 null,表示取不到有效值。
  30. */
  31. class DetectInfoBestFrame extends AbstractModel
  32. {
  33. /**
  34. * @var string 活体比对最佳帧Base64编码。
  35. 注意:此字段可能返回 null,表示取不到有效值。
  36. */
  37. public $BestFrame;
  38. /**
  39. * @var array 自截帧Base64编码数组。
  40. 注意:此字段可能返回 null,表示取不到有效值。
  41. */
  42. public $BestFrames;
  43. /**
  44. * @param string $BestFrame 活体比对最佳帧Base64编码。
  45. 注意:此字段可能返回 null,表示取不到有效值。
  46. * @param array $BestFrames 自截帧Base64编码数组。
  47. 注意:此字段可能返回 null,表示取不到有效值。
  48. */
  49. function __construct()
  50. {
  51. }
  52. /**
  53. * For internal only. DO NOT USE IT.
  54. */
  55. public function deserialize($param)
  56. {
  57. if ($param === null) {
  58. return;
  59. }
  60. if (array_key_exists("BestFrame",$param) and $param["BestFrame"] !== null) {
  61. $this->BestFrame = $param["BestFrame"];
  62. }
  63. if (array_key_exists("BestFrames",$param) and $param["BestFrames"] !== null) {
  64. $this->BestFrames = $param["BestFrames"];
  65. }
  66. }
  67. }