We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 707d40e + 84f15e2 commit ca904dcCopy full SHA for ca904dc
src/WebhooksService/Entity.php
@@ -35,6 +35,13 @@ class Entity
35
*/
36
private $lastUpdated;
37
38
+ /**
39
+ * The internal ID for the deleted entity in QuickBooks Online
40
+ *
41
+ * @var
42
+ */
43
+ private $deletedId;
44
+
45
/**
46
* Setter for name
47
*
@@ -122,4 +129,26 @@ public function getLastUpdated()
122
129
{
123
130
return $this->lastUpdated;
124
131
}
132
133
+ * Set deleted id
134
135
+ * @param $deletedId
136
+ * @return $this
137
138
+ public function setDeletedId($deletedId)
139
+ {
140
+ $this->deletedId = $deletedId;
141
+ return $this;
142
+ }
143
144
145
+ * Return the deleted id
146
147
+ * @return mixed
148
149
150
+ public function getDeletedId()
151
152
+ return $this->deletedId;
153
125
154
0 commit comments