diff --git a/src/Entity/Payment.php b/src/Entity/Payment.php
index 8427b73..3e72c78 100644
--- a/src/Entity/Payment.php
+++ b/src/Entity/Payment.php
@@ -8,6 +8,7 @@
 namespace Drupal\payment\Entity;
 
 use Drupal\Core\Entity\ContentEntityBase;
+use Drupal\Core\Entity\EntityChangedTrait;
 use Drupal\Core\Entity\EntityInterface;
 use Drupal\Core\Entity\EntityTypeInterface;
 use Drupal\Core\Field\BaseFieldDefinition;
@@ -59,6 +60,8 @@ use Drupal\user\UserInterface;
  */
 class Payment extends ContentEntityBase implements PaymentInterface {
 
+  use EntityChangedTrait;
+
   /**
    * {@inheritdoc}
    */
@@ -86,13 +89,6 @@ class Payment extends ContentEntityBase implements PaymentInterface {
   /**
    * {@inheritdoc}
    */
-  public function getChangedTime() {
-    return $this->get('changed')->value;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
   public function getChangedTimeAcrossTranslations() {
     // Payments are not translatable, so there are no per-translation changed
     // times.
