Module: FrOData::Service::Response::Plain

Defined in:
lib/frodata/service/response/plain.rb

Instance Method Summary collapse

Instance Method Details

#error_messageObject



17
18
19
# File 'lib/frodata/service/response/plain.rb', line 17

def error_message
  response.body
end

#next_pageObject

Raises:

  • (NotImplementedError)


9
10
11
# File 'lib/frodata/service/response/plain.rb', line 9

def next_page
  raise NotImplementedError, 'Not available'
end

#next_page_urlObject

Raises:

  • (NotImplementedError)


13
14
15
# File 'lib/frodata/service/response/plain.rb', line 13

def next_page_url
  raise NotImplementedError, 'Not available'
end

#parse_entity(entity_data, entity_options) ⇒ Object

Raises:

  • (NotImplementedError)


5
6
7
# File 'lib/frodata/service/response/plain.rb', line 5

def parse_entity(entity_data, entity_options)
  raise NotImplementedError, 'Not Available'
end

#parsed_bodyObject



21
22
23
# File 'lib/frodata/service/response/plain.rb', line 21

def parsed_body
  response.body
end