chore: tmdb client cleanup

This commit is contained in:
2025-09-02 16:37:26 -05:00
parent b8b71fa5b3
commit fc797a3a0f
12 changed files with 181 additions and 508 deletions

View File

@@ -11,7 +11,6 @@ class TmdbResult
public ?string $imdbId = "",
#[SerializedPath('[id]')]
public ?int $tmdbId = null,
#[SerializedPath('[title]')]
public ?string $title = "",
#[SerializedPath('[overview]')]
public ?string $description = "",
@@ -19,6 +18,7 @@ class TmdbResult
public ?\DateTimeInterface $premiereDate = null,
public ?string $year = null,
public ?string $mediaType = "",
#[SerializedPath('[seasons]')]
public ?array $episodes = null,
public ?string $episodeAirDate = null,
) {}