relation = $account; $this->duty = $duty; } /** * Get relation object. * * @return int|Account * * @since 1.0.0 */ public function getRelation() { return $this->relation; } /** * {@inheritdoc} */ public function toArray() : array { return [ 'id' => $this->id, 'duty' => $this->duty, 'relation' => $this->relation, ]; } /** * {@inheritdoc} */ public function jsonSerialize() { return $this->toArray(); } }