addType('id', 'integer'); $this->addType('rootId', 'integer'); $this->addType('botId', 'integer'); $this->addType('active', 'boolean'); $this->addType('createdAt', 'integer'); $this->addType('updatedAt', 'integer'); } public function jsonSerialize(): array { return [ 'id' => $this->id, 'root_id' => $this->rootId, 'bot_id' => $this->botId, 'config_hash' => $this->configHash, 'active' => $this->active, 'created_at' => $this->createdAt, 'updated_at' => $this->updatedAt, ]; } }