1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- // This file is auto-generated, don't edit it. Thanks.
- namespace AlibabaCloud\SDK\Elasticsearch\V20170613\Models;
- use AlibabaCloud\Tea\Model;
- class CreateIndexTemplateRequest extends Model
- {
- /**
- * @var string
- */
- public $clientToken;
- /**
- * @var string
- */
- public $body;
- protected $_name = [
- 'clientToken' => 'ClientToken',
- 'body' => 'body',
- ];
- public function validate()
- {
- }
- public function toMap()
- {
- $res = [];
- if (null !== $this->clientToken) {
- $res['ClientToken'] = $this->clientToken;
- }
- if (null !== $this->body) {
- $res['body'] = $this->body;
- }
- return $res;
- }
- /**
- * @param array $map
- *
- * @return CreateIndexTemplateRequest
- */
- public static function fromMap($map = [])
- {
- $model = new self();
- if (isset($map['ClientToken'])) {
- $model->clientToken = $map['ClientToken'];
- }
- if (isset($map['body'])) {
- $model->body = $map['body'];
- }
- return $model;
- }
- }
|