addType('id', 'string'); $this->addType('limit', 'integer'); $this->addType('downloads', 'integer'); } public function jsonSerialize(): array { return [ 'id' => $this->id, 'limit' => $this->limit, 'downloads' => $this->downloads ]; } }