Listory/src/sources/spotify/spotify-api/entities/simplified-artist-object.ts

26 lines
391 B
TypeScript

export class SimplifiedArtistObject {
/**
* A link to the Web API endpoint providing full details of the artist.
*/
href: string;
/**
* The Spotify ID for the artist.
*/
id: string;
/**
* The name of the artist.
*/
name: string;
/**
* The object type: "artist".
*/
type: "artist";
/**
* The Spotify URI for the artist.
*/
uri: string;
}