addType('max_rooms', 'integer'); $this->addType('max_participants', 'integer'); $this->addType('allow_recording', 'boolean'); } public function jsonSerialize(): array { return [ 'id' => $this->id, 'groupId' => $this->groupId, 'maxRooms' => (int) $this->maxRooms, 'roomTypes' => \json_decode($this->roomTypes), 'maxParticipants' => (int) $this->maxParticipants, 'allowRecording' => boolval($this->allowRecording), ]; } }