We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Intercom Client leads service offers the mixin Delete to delete Lead objects. But, however this mixin is builtin to work though object attribute id .
class Delete(object): """A mixin that provides `delete` functionality.""" def delete(self, obj): """Delete the specified instance of this resource.""" collection = utils.resource_class_to_collection_name( self.collection_class) self.client.delete("/%s/%s" % (collection, obj.id), {}) return obj
and Lead is an id-less object.
Update: Seen fix in #176
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Intercom Client leads service offers the mixin Delete to delete Lead objects.
But, however this mixin is builtin to work though object attribute id .
and Lead is an id-less object.
Update: Seen fix in #176
The text was updated successfully, but these errors were encountered: