module TmdbRexx::Client::Timezone
Constants
- RESOURCE
Public Instance Methods
timezones(options = {})
click to toggle source
Get the list of supported timezones for the API methods that support them.
@see docs.themoviedb.apiary.io/#reference/movies/timezones
@return [Hashie::Mash] response
@example Get the timezones api response
client.timezones
# File lib/tmdb_rexx/client/timezone.rb, line 16 def timezones(options = {}) get([RESOURCE, "list"].join("/"), options) end