data; } /** * Set data. * * @param array $data Data * * @return void * * @since 1.0.0 */ public function setData(array $data) : void { $this->data = $data; } /** * Get id * * @return int * * @since 1.0.0 */ public function getId() : int { return $this->id; } /** * {@inheritdoc} */ public function toArray() : array { return [ 'id' => $this->id, 'title' => $this->title, 'job' => $this->job, 'exchange' => $this->exchange, ]; } /** * {@inheritdoc} */ public function jsonSerialize() : mixed { return $this->toArray(); } }