CreateIndexTemplateRequest.php 1.1 KB

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