When printing out an Album, the release date is included:
Album(
id: "1566393640",
title: "Aquatic - Single",
artistName: "Nora En Pure",
genreNames: [
"Dance",
"Music"
],
releaseDate: "2021-06-04",
isCompilation: false,
upc: "7640130765399"
)
But it is not mentioned as an instance property here and I cannot identify any way to access it in my project. How can I go about getting access to this attribute via MusicKit?
Thanks! :)