From 8551641664add48bfc93c6b1c300f43753a7024c Mon Sep 17 00:00:00 2001 From: JalalLinuX Date: Mon, 30 Oct 2023 12:41:23 +0330 Subject: [PATCH] add additionalInfo on edge --- src/Entities/Edge.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Entities/Edge.php b/src/Entities/Edge.php index 676831b..96d7f7e 100644 --- a/src/Entities/Edge.php +++ b/src/Entities/Edge.php @@ -19,6 +19,7 @@ * @property Id $tenantId * @property Id $customerId * @property Id $rootRuleChainId + * @property array $additionalInfo * @property \DateTime $createdTime * @property string $name * @property string $type @@ -32,6 +33,7 @@ class Edge extends Tntity { protected $fillable = [ 'id', + 'additionalInfo', 'createdTime', 'tenantId', 'customerId',