Skip to content

Commit

Permalink
Added release_date to the asset struct in the search response (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepanbujnak authored Nov 1, 2023
1 parent fa29dbe commit b90f840
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pex_search.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ type PexSearchAsset struct {
Distributor string `json:"distributor"`
Subtitle string `json:"subtitle"`
AlbumName string `json:"album_name"`
ReleaseDate struct {
Year int `json:"year"`
Month int `json:"month"`
Day int `json:"day"`
} `json:"release_date"`
}

// PexSearchMatch contains detailed information about the match,
Expand Down

0 comments on commit b90f840

Please sign in to comment.