DetectReflectLivenessAndCompareRequest.php 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. * DetectReflectLivenessAndCompare请求参数结构体
  21. *
  22. * @method string getLiveDataUrl() 获取SDK生成的活体检测数据包的资源地址。
  23. * @method void setLiveDataUrl(string $LiveDataUrl) 设置SDK生成的活体检测数据包的资源地址。
  24. * @method string getLiveDataMd5() 获取SDK生成的活体检测数据包的资源内容MD5(32位,用于校验LiveData的一致性)。
  25. * @method void setLiveDataMd5(string $LiveDataMd5) 设置SDK生成的活体检测数据包的资源内容MD5(32位,用于校验LiveData的一致性)。
  26. * @method string getImageUrl() 获取用于比对的目标图片的资源地址。
  27. * @method void setImageUrl(string $ImageUrl) 设置用于比对的目标图片的资源地址。
  28. * @method string getImageMd5() 获取用于比对的目标图片的资源MD5(32位,用于校验Image的一致性)。
  29. * @method void setImageMd5(string $ImageMd5) 设置用于比对的目标图片的资源MD5(32位,用于校验Image的一致性)。
  30. */
  31. class DetectReflectLivenessAndCompareRequest extends AbstractModel
  32. {
  33. /**
  34. * @var string SDK生成的活体检测数据包的资源地址。
  35. */
  36. public $LiveDataUrl;
  37. /**
  38. * @var string SDK生成的活体检测数据包的资源内容MD5(32位,用于校验LiveData的一致性)。
  39. */
  40. public $LiveDataMd5;
  41. /**
  42. * @var string 用于比对的目标图片的资源地址。
  43. */
  44. public $ImageUrl;
  45. /**
  46. * @var string 用于比对的目标图片的资源MD5(32位,用于校验Image的一致性)。
  47. */
  48. public $ImageMd5;
  49. /**
  50. * @param string $LiveDataUrl SDK生成的活体检测数据包的资源地址。
  51. * @param string $LiveDataMd5 SDK生成的活体检测数据包的资源内容MD5(32位,用于校验LiveData的一致性)。
  52. * @param string $ImageUrl 用于比对的目标图片的资源地址。
  53. * @param string $ImageMd5 用于比对的目标图片的资源MD5(32位,用于校验Image的一致性)。
  54. */
  55. function __construct()
  56. {
  57. }
  58. /**
  59. * For internal only. DO NOT USE IT.
  60. */
  61. public function deserialize($param)
  62. {
  63. if ($param === null) {
  64. return;
  65. }
  66. if (array_key_exists("LiveDataUrl",$param) and $param["LiveDataUrl"] !== null) {
  67. $this->LiveDataUrl = $param["LiveDataUrl"];
  68. }
  69. if (array_key_exists("LiveDataMd5",$param) and $param["LiveDataMd5"] !== null) {
  70. $this->LiveDataMd5 = $param["LiveDataMd5"];
  71. }
  72. if (array_key_exists("ImageUrl",$param) and $param["ImageUrl"] !== null) {
  73. $this->ImageUrl = $param["ImageUrl"];
  74. }
  75. if (array_key_exists("ImageMd5",$param) and $param["ImageMd5"] !== null) {
  76. $this->ImageMd5 = $param["ImageMd5"];
  77. }
  78. }
  79. }