class Tmdb::Changes

Defined in:

changes.cr

Class Method Summary

Class Method Detail

def self.movie(start_date : Time | Nil = nil, end_date : Time | Nil = nil, skip_cache : Bool = false) : LazyIterator(Change) #

Get a list of all of the movie ids that have been changed in the past 24 hours.

You can query it for up to 14 days worth of changed IDs at a time with the start_date and end_date query parameters.


[View source]
def self.person(start_date : Time | Nil = nil, end_date : Time | Nil = nil, skip_cache : Bool = false) : LazyIterator(Change) #

Get a list of all of the people ids that have been changed in the past 24 hours.

You can query it for up to 14 days worth of changed IDs at a time with the start_date and end_date query parameters.


[View source]
def self.tv_show(start_date : Time | Nil = nil, end_date : Time | Nil = nil, skip_cache : Bool = false) : LazyIterator(Change) #

Get a list of all of the TV show ids that have been changed in the past 24 hours.

You can query it for up to 14 days worth of changed IDs at a time with the start_date and end_date query parameters.


[View source]