comic-vine-sdk
Version:
A JS/TS client for the Comic Vine API
23 lines (22 loc) • 445 B
TypeScript
export interface VideoTypeDetails {
/**
* URL pointing to the video_type detail resource.
*/
apiDetailUrl: string;
/**
* Brief summary of the video_type.
*/
deck: null | string;
/**
* Unique ID of the video_type.
*/
id: number;
/**
* Name of the video_type.
*/
name: string;
/**
* URL pointing to the video_type on Giant Bomb.
*/
siteDetailUrl: string;
}