We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96235c6 commit 97f34b8Copy full SHA for 97f34b8
intercom/extended_api_operations/users.py
@@ -1,7 +1,7 @@
1
# -*- coding: utf-8 -*-
2
"""Operation to return all users for a particular Company."""
3
4
-from intercom import utils
+from intercom import utils, user
5
from intercom.collection_proxy import CollectionProxy
6
7
@@ -14,4 +14,4 @@ def users(self, id):
14
self.collection_class)
15
finder_url = "/%s/%s/users" % (collection, id)
16
return CollectionProxy(
17
- self.client, self.collection_class, "users", finder_url)
+ self.client, user.User, "users", finder_url)
0 commit comments