addType('id','integer'); $this->addType('stackId','integer'); $this->addType('order','integer'); } public function jsonSerialize() { return [ 'id' => $this->id, 'title' => $this->title, 'description' => $this->description, 'type' => $this->type, 'lastModified' => $this->lastModified, 'createdAt' => $this->createdAt, 'owner' => $this->owner, 'order' => $this->order, 'stackId' => $this->stackId, 'labels' => $this->labels, ]; } }