Class: Keymaker::GetRelationshipTypesRequest

Inherits:
Request
  • Object
show all
Defined in:
lib/keymaker/requests/get_relationship_types_request.rb

Instance Attribute Summary

Attributes inherited from Request

#config, #opts, #service

Instance Method Summary collapse

Methods inherited from Request

#initialize

Constructor Details

This class inherits a constructor from Keymaker::Request

Instance Method Details

#submitObject



5
6
7
8
9
10
11
12
13
14
# File 'lib/keymaker/requests/get_relationship_types_request.rb', line 5

def submit
  service.get(relationship_types_path, {}).on_error do |response|
    case response.status
    when (400..499)
      raise ClientError.new(response, response.body)
    when (500..599)
      raise ServerError.new(response, response.body)
    end
  end
end