1.2 KiB
		
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
VideoDetailed
Properties
| Name | Data Type | Description | 
|---|---|---|
| type | "VIDEO" | Type of data | 
| videoId | string | YouTube Video ID | 
| name | string | Name | 
| artists | ArtistBasic [] | Channels that created the video | 
| views | number | View count | 
| duration | number | Duration in seconds | 
| thumbnails | ThumbnailFull [] | Thumbnails | 
TypeScript Source Code
interface VideoDetailed {
	type: "VIDEO"
	videoId: string
	name: string
	artists: ArtistBasic[]
	views: number
	duration: number
	thumbnails: ThumbnailFull[]
}