Home > @i2analyze/i2connect > utility > SetRecordProperties
utility.SetRecordProperties 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 SetRecordProperties<TItemType extends schema.IItemType> = {
[key in PropertyTypeDisplayNames<TItemType>]?: SetPropertyValueType<PropertyTypeFromDisplayName<TItemType, key>> | undefined;
};
References: schema.IItemType, PropertyTypeDisplayNames, SetPropertyValueType, PropertyTypeFromDisplayName
Introduced: API version 2.0
Type Parameters
Parameter | Type | Description |
---|---|---|
TItemType | extends schema.IItemType | The type of the record that has these properties. |