comic-vine-sdk
Version:
A JS/TS client for the Comic Vine API
59 lines (58 loc) • 1.37 kB
TypeScript
import { IssueApiResource, SiteResource, Image } from '../../common-types.js';
export interface ConceptDetails {
/**
* List of aliases the concept is known by. A \n (newline) seperates each alias.
*/
aliases: null | string;
/**
* URL pointing to the concept detail resource.
*/
apiDetailUrl: string;
countOfIsssueAppearances: number;
/**
* Date the concept was added to Comic Vine.
*/
dateAdded: Date;
/**
* Date the concept was last updated on Comic Vine.
*/
dateLastUpdated: Date;
/**
* Brief summary of the concept.
*/
deck: string;
/**
* Description of the concept.
*/
description: string;
/**
* Issue where the concept made its first appearance.
*/
firstAppearedInIssue: IssueApiResource;
/**
* Unique ID of the concept.
*/
id: number;
/**
* Main image of the concept.
*/
image: Image;
issueCredits: Array<SiteResource>;
/**
* Movies the concept was in.
*/
movies: Array<SiteResource>;
/**
* Name of the concept.
*/
name: string;
/**
* URL pointing to the concept on Giant Bomb.
*/
siteDetailUrl: string;
/**
* The first year this concept appeared in comics.
*/
startYear: string;
volumeCredits: Array<SiteResource>;
}