Skip to main content

UpdateType

Update type enumeration.

NameDescriptionValue
UPDATE_TYPE_NORMALNormal, user-settable property.0
UPDATE_TYPE_SET_BY_SERVERA 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_CODEA 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