From 916134643adcd6a76b816fc6d6fc47e477c1f6e2 Mon Sep 17 00:00:00 2001 From: Devin Hyden Date: Fri, 15 Mar 2019 23:42:31 -0700 Subject: [PATCH] Added the required field 'id' to the base class 'entity' (#143) --- src/AutotaskObjects/Entity.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AutotaskObjects/Entity.php b/src/AutotaskObjects/Entity.php index 431bdb4..4a08a49 100644 --- a/src/AutotaskObjects/Entity.php +++ b/src/AutotaskObjects/Entity.php @@ -4,6 +4,7 @@ class Entity { // Required + public $id; public $Fields; public $UserDefinedFields; }