Home > @i2analyze/i2connect > data > LogicalType
data.LogicalType type
A logical type for the value of a property of a record.
Signature:
type LogicalType =
/** A single-line text string. */
'singleLineString'
/** A date with no associated time. */
| 'date'
/** A time with no associated date. */
| 'time'
/** A date-and-time value. */
| 'dateAndTime'
/** A true/false value. */
| 'boolean'
/** An integer value. */
| 'integer'
/** A double-precision (64-bit) floating point value. */
| 'double'
/** A decimal value that is stored accurately without rounding. */
| 'decimal'
/** A multiple-line text string. */
| 'multipleLineString'
/** A value that is selected from a list. */
| 'selectedFromList'
/** A value that is suggested from a list. */
| 'suggestedFromList'
/** A geospatial value. */
| 'geospatial';
Introduced: API version 1.0