import { CheckpointCoordinate } from "./CheckpointCoordinate"; import { Tag } from "./Tag"; import { CheckpointEvents } from "./CheckpointEvents"; import { CheckpointSource } from "./CheckpointSource"; export interface Checkpoint { created_at?: string; slug?: string; checkpoint_time?: string; location?: string | null; city?: string | null; state?: string | null; postal_code?: string | null; coordinate?: CheckpointCoordinate | null; country_region?: string | null; country_region_name?: string | null; message?: string; tag?: Tag; subtag?: string; subtag_message?: string; raw_tag?: string | null; events?: CheckpointEvents[]; source?: CheckpointSource; hash?: string; }