1.2 KiB
		
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
SongDetailed
Properties
| Name | Data Type | Description | 
|---|---|---|
| type | "SONG" | Type of data | 
| videoId | string | YouTube Video ID | 
| name | string | Name | 
| artists | ArtistBasic [] | Artists | 
| album | AlbumBasic | Album | 
| duration | number | Duration in seconds | 
| thumbnails | ThumbnailFull [] | Thumbnails | 
TypeScript Source Code
interface SongDetailed {
	type: "SONG"
	videoId: string
	name: string
	artists: ArtistBasic[]
	album: AlbumBasic
	duration: number
	thumbnails: ThumbnailFull[]
}