defmodule Itunes.Album do @moduledoc """ Itunes.Album represents a album-based search result from iTunes. """ defstruct \ amgArtistId: nil, \ artistId: nil, \ artistName: nil, \ artistViewUrl: nil, \ artworkUrl100: nil, \ artworkUrl60: nil, \ collectionCensoredName: nil, \ collectionExplicitness: nil, \ collectionId: nil, \ collectionName: nil, \ collectionPrice: nil, \ collectionType: nil, \ collectionViewUrl: nil, \ copyright: nil, \ country: nil, \ currency: nil, \ primaryGenreName: nil, \ releaseDate: nil, \ trackCount: nil, \ wrapperType: nil \ end