From 1f6935f075aa6b74425758ae7a0c4b4601760cd4 Mon Sep 17 00:00:00 2001 From: Divyajose <75604843+divya-intelli@users.noreply.github.com> Date: Wed, 18 Sep 2024 16:44:03 +0530 Subject: [PATCH] Added AttributesPropertyAwareTrait that was missing (#498) --- 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;