Skip to content

Artist() - Classes1

Incomplete artist class

If the artist's content is empty except for the artist's name, this is due to a problem with Youtube that I'm trying to resolve as best I can.


Properties

description
followers
id
name
thumbnails

Functions

getAlbums
getSongs
getVideos

Functions

Function getAlbums()

Get the artist's albums

Builder:

javascript
Artist.getAlbums()

Return:  promiseLink<Album[]>

Function getSongs()

Get the artist's songs @return Music[]

Builder:

javascript
Artist.getSongs()

Return:  promiseLink<Music[]>

Function getVideos()

Get the artist's videos

Builder:

javascript
Artist.getVideos()

Return:  promiseLink<Music[]>

Properties

description

The artist's description

Builder:

javascript
Artist.description

Return:stringLink

followers

The artist's followers count

Builder:

javascript
Artist.followers

Return:numberLink

id

The YouTube Music artist id

Builder:

javascript
Artist.id

Return:numberLink

name

The artist name

Builder:

javascript
Artist.name

Return:stringLink

thumbnails

Thumbnails of the user

Builder:

javascript
Artist.thumbnails

Return:arrayLink<Thumbnail>