UpdateType
Update type enumeration.
| Name | Description | Value |
|---|---|---|
| UPDATE_TYPE_NORMAL | Normal, user-settable property. | 0 |
| UPDATE_TYPE_SET_BY_SERVER | A property that is automatically set and updated by the server. If a client supplies this type of properties in set operations, they are ignored by the server. | 1 |
| UPDATE_TYPE_SET_BY_CLIENT_CODE | A property that is automatically managed by client code. Unlike normal properties, users are not prompted to enter a value for this property type. | 2 |
Runtime Access
This enumeration is available at runtime on the MFiles global object under the VaultEnums namespace. Access enum values using MFiles.VaultEnums.UpdateType.<value>.
Example:
const value = MFiles.VaultEnums.UpdateType.UPDATE_TYPE_NORMAL;
See also: MFiles Global Object