Interface Incident

interface Incident {
    address: AddressInfo;
    approved: boolean;
    bearing: number;
    coordinator: null | string;
    countAttendance: number;
    countGuests: number;
    createdAt: string;
    createdOrPublishedAt: string;
    custom_fields?: CustomField[];
    description: string;
    descriptionDeprecated: string;
    distance: number;
    endsAt: string;
    entityType: EntityType;
    fullTeam: boolean;
    id: number;
    location: IncidentLocation;
    locationBookmark: IncidentLocationBookmark;
    night: boolean;
    owner: IncidentOwner;
    percAttendance: number;
    plan: null | string;
    planDeprecated: null | string;
    published: boolean;
    reference: string;
    referenceDescription: string;
    resourceType: string;
    selfCoordinator: boolean;
    shared: boolean;
    startsAt: string;
    tags: IncidentTag[];
    trackingNumber: null | string;
    updatedAt: string;
    weather: WeatherInfo;
    weatherCloudCover: null | number;
    weatherPressure: null | number;
}

Hierarchy

  • Entity
    • Incident

Properties

address: AddressInfo
approved: boolean
bearing: number
coordinator: null | string
countAttendance: number
countGuests: number
createdAt: string
createdOrPublishedAt: string
custom_fields?: CustomField[]
description: string
descriptionDeprecated: string
distance: number
endsAt: string
entityType: EntityType
fullTeam: boolean
id: number
locationBookmark: IncidentLocationBookmark
night: boolean
percAttendance: number
plan: null | string
planDeprecated: null | string
published: boolean
reference: string
referenceDescription: string
resourceType: string
selfCoordinator: boolean
shared: boolean
startsAt: string
tags: IncidentTag[]
trackingNumber: null | string
updatedAt: string
weather: WeatherInfo
weatherCloudCover: null | number
weatherPressure: null | number