Class: OxfordDictionary::Endpoints::Sentences

Inherits:
Endpoint
  • Object
show all
Defined in:
lib/oxford_dictionary/endpoints/sentences.rb

Overview

Interface for the /sentences endpoint

API documentation can be found here: developer.oxforddictionaries.com/documentation

Constant Summary collapse

ENDPOINT =
'sentences'.freeze

Instance Method Summary collapse

Methods inherited from Endpoint

#initialize

Constructor Details

This class inherits a constructor from OxfordDictionary::Endpoints::Endpoint

Instance Method Details

#sentence(word:, language:, params: {}) ⇒ Object



12
13
14
15
16
17
18
# File 'lib/oxford_dictionary/endpoints/sentences.rb', line 12

def sentence(word:, language:, params: {})
  path = "#{ENDPOINT}/#{language}/#{word}"
  uri = request_uri(path: path, params: params)

  response = @request_client.get(uri: uri)
  deserialize.call(response.body)
end