Enum PropertyType
An enum, containing the possible property types.
Namespace: Realms.Schema
Assembly: Realm.dll
Syntax
[Flags]
public enum PropertyType : byte
Fields
| Name | Description |
|---|---|
| Array | A collection. Can be combined with other values. |
| Bool | Boolean property. |
| Data | Binary data (byte[]) property. |
| Date | DateTimeOffset property. |
| Double | 64 bit floating point property. |
| Flags | Metadata flags. |
| 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. |
| Nullable | A nullable (optional) property. Can be combined with other values. |
| Object | Related object property, representing a one-to-one or many-to-one relationship. |
| Required | A required property. Can be combined with other values. |
| String | String property. |