<?php
declare(strict_types = 1);

namespace Elasticsearch\Endpoints;

use Elasticsearch\Endpoints\AbstractEndpoint;

/**
 * Class :endpoint
 * File generated using util/GenerateEndpoints.php
 *
 * @category Elasticsearch
 * @package  Elasticsearch\Endpoints\:endpoint
 * @author   Enrico Zimuel <enrico.zimuel@elastic.co>
 * @license  http://www.apache.org/licenses/LICENSE-2.0 Apache2
 * @link     http://elastic.co
 */
class :endpoint extends AbstractEndpoint
{
    public function getURI(): string
    {
        :uri
    }

    public function getParamWhitelist(): array
    {
        return [
            :params
        ];
    }

    public function getMethod(): string
    {
        return ':method';
    }
}
