class Intercom::Service::Admin

Public Instance Methods

collection_class() click to toggle source
# File lib/intercom/service/admin.rb, line 11
def collection_class
  Intercom::Admin
end
me() click to toggle source
# File lib/intercom/service/admin.rb, line 15
def me
  response = @client.get("/me", {})
  raise Intercom::HttpError.new('Http Error - No response entity returned') unless response
  from_api(response)
end