i2 Connect SDK
Search results for

    Show/hide table of contents

    Home > @i2analyze/i2connect > utility > WritableLogicalTypeValueTypeMap

    utility.WritableLogicalTypeValueTypeMap type

    A map of logical type to value types for a particular property type, when writing property values.

    Signature:

    type WritableLogicalTypeValueTypeMap<TPropertyType extends schema.IPropertyType> = Omit<LogicalTypeValueTypeMap<TPropertyType>, 'date' | 'time' | 'dateAndTime' | 'decimal' | 'geospatial'> & {
            date: WritableDate;
            time: WritableTime;
            decimal: WritableDecimal;
            dateAndTime: WritableDateTime;
            geospatial: IWritableGeospatialPoint;
        };
    

    References: schema.IPropertyType, LogicalTypeValueTypeMap, WritableDate, WritableTime, WritableDecimal, WritableDateTime, IWritableGeospatialPoint

    Introduced: API version 2.0

    Type Parameters

    Parameter Type Description
    TPropertyType extends schema.IPropertyType The property type to evaluate.
    In this article
    Back to top © N. Harris Computer Corporation