CompareFacesRequest.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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 CompareFacesRequest extends Model
  6. {
  7. /**
  8. * @example FacePic
  9. *
  10. * @var string
  11. */
  12. public $sourceImageType;
  13. /**
  14. * @example http%3A%2F%2Fjiangsu.china.com.cn%2Fuploadfile%2F2015%2F0114%2F1421221304095989.jpg
  15. *
  16. * @var string
  17. */
  18. public $sourceImageValue;
  19. /**
  20. * @example FacePic
  21. *
  22. * @var string
  23. */
  24. public $targetImageType;
  25. /**
  26. * @example http%3A%2F%2Fjiangsu.china.com.cn%2Fuploadfile%2F2015%2F0114%2F1421221304095989.jpg
  27. *
  28. * @var string
  29. */
  30. public $targetImageValue;
  31. protected $_name = [
  32. 'sourceImageType' => 'SourceImageType',
  33. 'sourceImageValue' => 'SourceImageValue',
  34. 'targetImageType' => 'TargetImageType',
  35. 'targetImageValue' => 'TargetImageValue',
  36. ];
  37. public function validate()
  38. {
  39. }
  40. public function toMap()
  41. {
  42. $res = [];
  43. if (null !== $this->sourceImageType) {
  44. $res['SourceImageType'] = $this->sourceImageType;
  45. }
  46. if (null !== $this->sourceImageValue) {
  47. $res['SourceImageValue'] = $this->sourceImageValue;
  48. }
  49. if (null !== $this->targetImageType) {
  50. $res['TargetImageType'] = $this->targetImageType;
  51. }
  52. if (null !== $this->targetImageValue) {
  53. $res['TargetImageValue'] = $this->targetImageValue;
  54. }
  55. return $res;
  56. }
  57. /**
  58. * @param array $map
  59. *
  60. * @return CompareFacesRequest
  61. */
  62. public static function fromMap($map = [])
  63. {
  64. $model = new self();
  65. if (isset($map['SourceImageType'])) {
  66. $model->sourceImageType = $map['SourceImageType'];
  67. }
  68. if (isset($map['SourceImageValue'])) {
  69. $model->sourceImageValue = $map['SourceImageValue'];
  70. }
  71. if (isset($map['TargetImageType'])) {
  72. $model->targetImageType = $map['TargetImageType'];
  73. }
  74. if (isset($map['TargetImageValue'])) {
  75. $model->targetImageValue = $map['TargetImageValue'];
  76. }
  77. return $model;
  78. }
  79. }