module Omdb::Api::PublicApi::Search
Public Instance Methods
search(value, **options)
click to toggle source
# File lib/omdb/api/public_api/search.rb, line 7 def search(value, **options) perform_get( klass: Omdb::Api::Types::Movies, query_params: { search: value }.merge(options), headers: options.fetch(:headers, {}) ) end