From aab29092b53adcacf24afb5a9a6427073105948b Mon Sep 17 00:00:00 2001 From: phaym <1431593+phaym@users.noreply.github.com> Date: Wed, 20 Aug 2025 11:06:13 -0400 Subject: [PATCH] add isDefaulted back to model --- lib/Model/Variable.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Model/Variable.php b/lib/Model/Variable.php index e35b286..1153f8e 100644 --- a/lib/Model/Variable.php +++ b/lib/Model/Variable.php @@ -92,6 +92,7 @@ public static function openAPIFormats(): array 'key' => 'key', 'type' => 'type', 'value' => 'value', + 'isDefaulted' => 'isDefaulted', 'eval' => 'eval' ]; @@ -105,6 +106,7 @@ public static function openAPIFormats(): array 'key' => 'setKey', 'type' => 'setType', 'value' => 'setValue', + 'isDefaulted' => 'setIsDefaulted', 'eval' => 'setEval' ]; @@ -118,6 +120,7 @@ public static function openAPIFormats(): array 'key' => 'getKey', 'type' => 'getType', 'value' => 'getValue', + 'isDefaulted' => 'getIsDefaulted', 'eval' => 'getEval' ];