From 71a21eef31512cbadeafd493386fc75a6d53d4ed Mon Sep 17 00:00:00 2001 From: divyajose Date: Wed, 18 Sep 2024 10:42:44 +0530 Subject: [PATCH] Added AttributesPropertyAwareTrait that was missing --- src/Entity/XProduct.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Entity/XProduct.php b/src/Entity/XProduct.php index 30113134..00ff007c 100755 --- a/src/Entity/XProduct.php +++ b/src/Entity/XProduct.php @@ -21,6 +21,7 @@ use Apigee\Edge\Api\ApigeeX\Entity\ApiProduct; use Apigee\Edge\Entity\EntityInterface as EdgeEntityInterface; +use Apigee\Edge\Entity\Property\AttributesPropertyAwareTrait; use Drupal\apigee_edge\Entity\FieldableEdgeEntityBase; use Drupal\apigee_m10n\Entity\Property\DescriptionPropertyAwareDecoratorTrait; use Drupal\apigee_m10n\Entity\Property\DisplayNamePropertyAwareDecoratorTrait; @@ -63,6 +64,7 @@ #[\AllowDynamicProperties] class XProduct extends FieldableEdgeEntityBase implements XProductInterface { + use AttributesPropertyAwareTrait; use DisplayNamePropertyAwareDecoratorTrait; use DescriptionPropertyAwareDecoratorTrait; use IdPropertyAwareDecoratorTrait;