module TmdbRexx::Client::Job
Constants
- RESOURCE
Public Instance Methods
jobs(options = {})
click to toggle source
Get the list of valid jobs
@see # docs.themoviedb.apiary.io/#reference/movies/joblist
@return [Hashie::Mash] response
@example Get the jobs api response
client.jobs
# File lib/tmdb_rexx/client/job.rb, line 14 def jobs(options = {}) get([RESOURCE, "list"].join("/"), options)['jobs'] end