ExDisco.Types.ReleaseSummary (ex_disco v0.1.0)

Copy Markdown View Source

An abbreviated release as returned by artist and label release list endpoints.

This is a summary object — it contains enough to identify and display a release, but not the full details (tracklist, credits, etc.) found on a full release page.

Summary

Types

t()

@type t() :: %ExDisco.Types.ReleaseSummary{
  artist: String.t() | nil,
  catno: String.t() | nil,
  format: String.t() | nil,
  id: pos_integer(),
  label: String.t() | nil,
  main_release: pos_integer() | nil,
  resource_url: String.t() | nil,
  role: String.t() | nil,
  status: String.t() | nil,
  thumb: String.t() | nil,
  title: String.t(),
  year: non_neg_integer() | nil
}