type = new TicketAttributeType(); $this->value = new TicketAttributeValue(); } /** * {@inheritdoc} */ public function toArray() : array { return [ 'id' => $this->id, 'ticket' => $this->ticket, 'type' => $this->type, 'value' => $this->value, ]; } /** * {@inheritdoc} */ public function jsonSerialize() : mixed { return $this->toArray(); } }