Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions v2/movie.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ type Movie struct {
// Release Dates mapped against their corresponding country code like "IN" : "2013-12-20".
ReleaseDates map[string]string `json:"releaseDates"`

// GlobalReleaseDate is the global release date of the movie.
GlobalReleaseDate string `json:"globalReleaseDate"`

// Certifications mapped against their corresponding country code like "IN" : "A".
Certifications map[string]string `json:"certifications"`

Expand Down