From 4f69e6f50fb84b63437cda7eccc780443937e822 Mon Sep 17 00:00:00 2001 From: Rahmane OUSMANE Date: Mon, 6 Feb 2017 17:43:45 +0800 Subject: [PATCH] Add Entity types resource for creating and updating entity types. --- lib/Botamp/Client.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Botamp/Client.php b/lib/Botamp/Client.php index bc688f7..b6a738a 100644 --- a/lib/Botamp/Client.php +++ b/lib/Botamp/Client.php @@ -101,5 +101,6 @@ private function bindResources() $this->me = new ApiResource('me', $this); $this->subscriptions = new ApiResource('subscriptions', $this); $this->contacts = new ApiResource('contacts', $this); + $this->entityTypes = new ApiResource('entity_types', $this); } }