addType('id','integer'); $this->addType('started','integer'); $this->addType('position','integer'); $this->addType('total','integer'); $this->addType('timestampEpoch','integer'); } public function jsonSerialize(): array { return [ 'id' => $this->id, 'podcast' => $this->podcast, 'episode' => $this->episode, 'guid' => $this->guid, 'action' => $this->action, 'position' => $this->position, 'started' => $this->started, 'total' => $this->total, 'timestamp' => $this->timestampEpoch, ]; } }