shaligo
    Preparing search index...

    Interface SeriesDetail

    interface SeriesDetail {
        alt_names?: string[];
        associated: AssociatedSeries[];
        cv_id?: number | null;
        desc?: string;
        gcd_id?: number | null;
        genres: Genre[];
        id: number;
        imprint: ImprintRef;
        issue_count: number;
        modified: string;
        name: string;
        publisher: PublisherRef;
        resource_url: string;
        series_type: SeriesTypeSummary;
        sort_name: string;
        status: string;
        volume: number;
        year_began: number;
        year_end?: number | null;
    }
    Index
    alt_names?: string[]
    associated: AssociatedSeries[]
    cv_id?: number | null

    Comic Vine ID.

    desc?: string
    gcd_id?: number | null

    Grand Comics Database ID.

    genres: Genre[]
    id: number
    imprint: ImprintRef
    issue_count: number
    modified: string

    ISO 8601 timestamp.

    name: string
    publisher: PublisherRef
    resource_url: string
    series_type: SeriesTypeSummary
    sort_name: string
    status: string

    Human-readable status label (e.g. "Ongoing").

    volume: number
    year_began: number
    year_end?: number | null