Convention: {
    city: string;
    convention_id: string;
    country: string;
    end_date: Date | null;
    name: string;
    start_date: Date;
    state?: string;
    type: ConventionType;
    zip?: string;
}

Represents a comic related event for readers and fans.

Type declaration

  • city: string

    The city the convention took place.

  • convention_id: string

    Unique ID identifying a convention.

  • country: string

    The country the convention took place.

  • end_date: Date | null
  • name: string

    The name of the convention.

  • start_date: Date
  • Optionalstate?: string

    The state the convention took place, if in the US.

  • type: ConventionType

    The type of convention.

  • Optionalzip?: string