Interface Incident

interface Incident {
    address: {
        country: string;
        postCode: string;
        region: string;
        street: string;
        town: string;
    };
    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: { coordinates: [number, number]; type: string };
    locationBookmark: { id: null | number; resourceType: null | string };
    night: boolean;
    owner: { id: null | number; resourceType: null | string };
    percAttendance: number;
    plan: null | string;
    planDeprecated: null | string;
    published: boolean;
    reference: string;
    referenceDescription: string;
    resourceType: string;
    selfCoordinator: boolean;
    shared: boolean;
    startsAt: string;
    tags: { id: null | number; resourceType: null | string }[];
    trackingNumber: null | string;
    updatedAt: string;
    weather: {
        symbol: null | string;
        symbolDate: null | string;
        temperature: null | number;
    };
    weatherCloudCover: null
    | number;
    weatherPressure: null | number;
}

Hierarchy

  • Entity
    • Incident

Properties

address: {
    country: string;
    postCode: string;
    region: string;
    street: string;
    town: string;
}
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: { coordinates: [number, number]; type: string }
locationBookmark: { id: null | number; resourceType: null | string }
night: boolean
owner: { id: null | number; resourceType: null | string }
percAttendance: number
plan: null | string
planDeprecated: null | string
published: boolean
reference: string
referenceDescription: string
resourceType: string
selfCoordinator: boolean
shared: boolean
startsAt: string
tags: { id: null | number; resourceType: null | string }[]
trackingNumber: null | string
updatedAt: string
weather: {
    symbol: null | string;
    symbolDate: null | string;
    temperature: null | number;
}
weatherCloudCover: null | number
weatherPressure: null | number