# Changes Module
The `changes` module provides functionality to retrieve changes made to movies, TV shows, and people on TMDb.
## Structs
### `Changes`
Represents the TMDb Changes API, allowing you to query for recent changes.
#### Methods
- `new() -> Self`: Creates a new `Changes` instance.
- `movie(options: Option<HashMap<String, String>>) -> Result<Value, Box<dyn std::error::Error>>`: Retrieves a list of movie IDs that have been changed.
- `tv(options: Option<HashMap<String, String>>) -> Result<Value, Box<dyn std::error::Error>>`: Retrieves a list of TV show IDs that have been changed.
- `person(options: Option<HashMap<String, String>>) -> Result<Value, Box<dyn std::error::Error>>`: Retrieves a list of person IDs that have been changed.