CreateVpcEndpointResponseBody.php 1.3 KB

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