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 set and updated by the client. The only difference to type eUpdateTypeNormal is that the user should not be prompted to enter the value of this type of property.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