Home > @i2analyze/i2connect > records > RecordProperties
records.RecordProperties type
A set of name-value pairs that contain the type names and values for the properties of a record that has a specific type.
Signature:
type RecordProperties<TItemType extends schema.IItemType> = {
[key in PropertyTypeDisplayNames<TItemType>]?: data.PropertyValueType<PropertyTypeFromDisplayName<TItemType, key>> | undefined;
};
References: schema.IItemType, PropertyTypeDisplayNames, data.PropertyValueType, PropertyTypeFromDisplayName
Introduced: API version 1.0
Type Parameters
Parameter | Type | Description |
---|---|---|
TItemType | extends schema.IItemType | The type of the record that has these properties. |