Packages

iTunes search API wrapper

Current section

Files

Jump to
itunes lib structs artist.ex
Raw

lib/structs/artist.ex

defmodule Itunes.Artist do
@moduledoc """
Itunes.Artist represents a artist-based search result from iTunes.
```
defstruct
amgArtistId: nil,
artistId: nil,
artistLinkUrl: nil,
artistName: nil,
artistType: nil,
primaryGenreId: nil,
primaryGenreName: nil,
wrapperType: nil
```
"""
defstruct \
amgArtistId: nil, \
artistId: nil, \
artistLinkUrl: nil, \
artistName: nil, \
artistType: nil, \
primaryGenreId: nil, \
primaryGenreName: nil, \
wrapperType: nil
end