Enum PropertyType
An enum, containing the possible property types.
Namespace:Realms.Schema
Assembly:Realm.dll
Syntax
public enum PropertyType : byte
Fields
Name | Description |
---|---|
Any | Any property type. |
Array | A collection of related objects property, representing one-to-many relationship. |
Bool | Boolean property. |
Data | Binary data (byte[]) property. |
Date | DateTimeOffset property. |
Double | 64 bit floating point property. |
Float | 32 bit floating point property. |
Int | Integer property, combining all integral types. |
LinkingObjects | A collection of objects linking to the model owning this property. |
Object | Related object property, representing a one-to-one or many-to-one relationship. |
String | String property. |