TagoIO SDK for JavaScript and TypeScript
    Preparing search index...

    Type Alias DataCreate

    DataCreate: Required<Pick<Data, "variable">> & Partial<
        Omit<
            Data,
            "id"
            | "device"
            | "origin"
            | "location"
            | "time"
            | "created_at",
        > & {
            location: LocationGeoJSON | LocationLatLng | null;
            time: string | Date;
        },
    >

    Type for creating data and sending it to the API.