DetectFaceAttributesRequest.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 DetectFaceAttributesRequest extends Model
  6. {
  7. /**
  8. * @var string
  9. */
  10. public $bizType;
  11. /**
  12. * @var string
  13. */
  14. public $materialValue;
  15. protected $_name = [
  16. 'bizType' => 'BizType',
  17. 'materialValue' => 'MaterialValue',
  18. ];
  19. public function validate()
  20. {
  21. }
  22. public function toMap()
  23. {
  24. $res = [];
  25. if (null !== $this->bizType) {
  26. $res['BizType'] = $this->bizType;
  27. }
  28. if (null !== $this->materialValue) {
  29. $res['MaterialValue'] = $this->materialValue;
  30. }
  31. return $res;
  32. }
  33. /**
  34. * @param array $map
  35. *
  36. * @return DetectFaceAttributesRequest
  37. */
  38. public static function fromMap($map = [])
  39. {
  40. $model = new self();
  41. if (isset($map['BizType'])) {
  42. $model->bizType = $map['BizType'];
  43. }
  44. if (isset($map['MaterialValue'])) {
  45. $model->materialValue = $map['MaterialValue'];
  46. }
  47. return $model;
  48. }
  49. }