AuthorizeFileUploadRequest.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. // This file is auto-generated, don't edit it. Thanks.
  3. namespace AlibabaCloud\SDK\OpenPlatform\V20191219\Models;
  4. use AlibabaCloud\Tea\Model;
  5. class AuthorizeFileUploadRequest extends Model
  6. {
  7. /**
  8. * @var string
  9. */
  10. public $product;
  11. /**
  12. * @var string
  13. */
  14. public $regionId;
  15. protected $_name = [
  16. 'product' => 'Product',
  17. 'regionId' => 'RegionId',
  18. ];
  19. public function validate()
  20. {
  21. }
  22. public function toMap()
  23. {
  24. $res = [];
  25. if (null !== $this->product) {
  26. $res['Product'] = $this->product;
  27. }
  28. if (null !== $this->regionId) {
  29. $res['RegionId'] = $this->regionId;
  30. }
  31. return $res;
  32. }
  33. /**
  34. * @param array $map
  35. *
  36. * @return AuthorizeFileUploadRequest
  37. */
  38. public static function fromMap($map = [])
  39. {
  40. $model = new self();
  41. if (isset($map['Product'])) {
  42. $model->product = $map['Product'];
  43. }
  44. if (isset($map['RegionId'])) {
  45. $model->regionId = $map['RegionId'];
  46. }
  47. return $model;
  48. }
  49. }