class Apis::Cinema
Class to fetch cinema
Public Instance Methods
showtimes()
click to toggle source
Get a list of showtimes in icelandic movie theaters; sort by movies
@return [Faraday::Response] Api result.
# File lib/apis/endpoints/cinema.rb, line 10 def showtimes Apis.client.get('/cinema') end
theaters()
click to toggle source
Get a list of showtimes in icelandic movie theaters; sort by theater
@return [Faraday::Response] Api result.
# File lib/apis/endpoints/cinema.rb, line 18 def theaters Apis.client.get('/cinema/theaters') end