material.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?php
  2. // This file is auto-generated, don't edit it. Thanks.
  3. namespace AlibabaCloud\SDK\Cloudauth\V20190307\Models\DescribeVerifyResultResponse;
  4. use AlibabaCloud\SDK\Cloudauth\V20190307\Models\DescribeVerifyResultResponse\material\idCardInfo;
  5. use AlibabaCloud\Tea\Model;
  6. class material extends Model
  7. {
  8. /**
  9. * @var string
  10. */
  11. public $faceImageUrl;
  12. /**
  13. * @var string
  14. */
  15. public $idCardName;
  16. /**
  17. * @var string
  18. */
  19. public $idCardNumber;
  20. /**
  21. * @var string
  22. */
  23. public $faceQuality;
  24. /**
  25. * @var string
  26. */
  27. public $faceGlobalUrl;
  28. /**
  29. * @var bool
  30. */
  31. public $faceMask;
  32. /**
  33. * @var idCardInfo
  34. */
  35. public $idCardInfo;
  36. /**
  37. * @var string[]
  38. */
  39. public $videoUrls;
  40. protected $_name = [
  41. 'faceImageUrl' => 'FaceImageUrl',
  42. 'idCardName' => 'IdCardName',
  43. 'idCardNumber' => 'IdCardNumber',
  44. 'faceQuality' => 'FaceQuality',
  45. 'faceGlobalUrl' => 'FaceGlobalUrl',
  46. 'faceMask' => 'FaceMask',
  47. 'idCardInfo' => 'IdCardInfo',
  48. 'videoUrls' => 'VideoUrls',
  49. ];
  50. public function validate()
  51. {
  52. Model::validateRequired('faceImageUrl', $this->faceImageUrl, true);
  53. Model::validateRequired('idCardName', $this->idCardName, true);
  54. Model::validateRequired('idCardNumber', $this->idCardNumber, true);
  55. Model::validateRequired('faceQuality', $this->faceQuality, true);
  56. Model::validateRequired('faceGlobalUrl', $this->faceGlobalUrl, true);
  57. Model::validateRequired('faceMask', $this->faceMask, true);
  58. Model::validateRequired('idCardInfo', $this->idCardInfo, true);
  59. Model::validateRequired('videoUrls', $this->videoUrls, true);
  60. }
  61. public function toMap()
  62. {
  63. $res = [];
  64. if (null !== $this->faceImageUrl) {
  65. $res['FaceImageUrl'] = $this->faceImageUrl;
  66. }
  67. if (null !== $this->idCardName) {
  68. $res['IdCardName'] = $this->idCardName;
  69. }
  70. if (null !== $this->idCardNumber) {
  71. $res['IdCardNumber'] = $this->idCardNumber;
  72. }
  73. if (null !== $this->faceQuality) {
  74. $res['FaceQuality'] = $this->faceQuality;
  75. }
  76. if (null !== $this->faceGlobalUrl) {
  77. $res['FaceGlobalUrl'] = $this->faceGlobalUrl;
  78. }
  79. if (null !== $this->faceMask) {
  80. $res['FaceMask'] = $this->faceMask;
  81. }
  82. if (null !== $this->idCardInfo) {
  83. $res['IdCardInfo'] = null !== $this->idCardInfo ? $this->idCardInfo->toMap() : null;
  84. }
  85. if (null !== $this->videoUrls) {
  86. $res['VideoUrls'] = $this->videoUrls;
  87. }
  88. return $res;
  89. }
  90. /**
  91. * @param array $map
  92. *
  93. * @return material
  94. */
  95. public static function fromMap($map = [])
  96. {
  97. $model = new self();
  98. if (isset($map['FaceImageUrl'])) {
  99. $model->faceImageUrl = $map['FaceImageUrl'];
  100. }
  101. if (isset($map['IdCardName'])) {
  102. $model->idCardName = $map['IdCardName'];
  103. }
  104. if (isset($map['IdCardNumber'])) {
  105. $model->idCardNumber = $map['IdCardNumber'];
  106. }
  107. if (isset($map['FaceQuality'])) {
  108. $model->faceQuality = $map['FaceQuality'];
  109. }
  110. if (isset($map['FaceGlobalUrl'])) {
  111. $model->faceGlobalUrl = $map['FaceGlobalUrl'];
  112. }
  113. if (isset($map['FaceMask'])) {
  114. $model->faceMask = $map['FaceMask'];
  115. }
  116. if (isset($map['IdCardInfo'])) {
  117. $model->idCardInfo = idCardInfo::fromMap($map['IdCardInfo']);
  118. }
  119. if (isset($map['VideoUrls'])) {
  120. if (!empty($map['VideoUrls'])) {
  121. $model->videoUrls = $map['VideoUrls'];
  122. }
  123. }
  124. return $model;
  125. }
  126. }