for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ElevenLabs\Api\Service\Resource;
/**
* Class Item.
*/
class Item implements ResourceInterface
{
* @var array
private $data;
private $meta;
private $body;
* Item constructor.
*
* @param array $data
* @param array $meta
* @param array $body
public function __construct(array $data, array $meta, array $body)
$this->data = $data;
$this->meta = $meta;
$this->body = $body;
}
* @return array
public function getData(): array
return $this->data;
public function getMeta(): array
return $this->meta;
public function getBody(): array
return $this->body;