DescribeFaceVerifyRequest.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. // This file is auto-generated, don't edit it. Thanks.
  3. namespace AlibabaCloud\SDK\Cloudauth\V20190307\Models;
  4. use AlibabaCloud\Tea\Model;
  5. class DescribeFaceVerifyRequest extends Model
  6. {
  7. /**
  8. * @var string
  9. */
  10. public $certifyId;
  11. /**
  12. * @var string
  13. */
  14. public $pictureReturnType;
  15. /**
  16. * @var int
  17. */
  18. public $sceneId;
  19. protected $_name = [
  20. 'certifyId' => 'CertifyId',
  21. 'pictureReturnType' => 'PictureReturnType',
  22. 'sceneId' => 'SceneId',
  23. ];
  24. public function validate()
  25. {
  26. }
  27. public function toMap()
  28. {
  29. $res = [];
  30. if (null !== $this->certifyId) {
  31. $res['CertifyId'] = $this->certifyId;
  32. }
  33. if (null !== $this->pictureReturnType) {
  34. $res['PictureReturnType'] = $this->pictureReturnType;
  35. }
  36. if (null !== $this->sceneId) {
  37. $res['SceneId'] = $this->sceneId;
  38. }
  39. return $res;
  40. }
  41. /**
  42. * @param array $map
  43. *
  44. * @return DescribeFaceVerifyRequest
  45. */
  46. public static function fromMap($map = [])
  47. {
  48. $model = new self();
  49. if (isset($map['CertifyId'])) {
  50. $model->certifyId = $map['CertifyId'];
  51. }
  52. if (isset($map['PictureReturnType'])) {
  53. $model->pictureReturnType = $map['PictureReturnType'];
  54. }
  55. if (isset($map['SceneId'])) {
  56. $model->sceneId = $map['SceneId'];
  57. }
  58. return $model;
  59. }
  60. }