class Intercom::Service::ExportContent

Public Instance Methods

cancel(id) click to toggle source
# File lib/intercom/service/export_content.rb, line 22
def cancel(id)
  response = @client.post("/export/cancel/#{id}", {})
  collection_class.new.from_response(response)
end
collection_class() click to toggle source
# File lib/intercom/service/export_content.rb, line 14
def collection_class
  Intercom::ExportContent
end
collection_name() click to toggle source
# File lib/intercom/service/export_content.rb, line 18
def collection_name
  'export/content/data'
end