| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) AppVersion | AppVersion | UserDeviceModule | |
| (2) EncryptionKey | EncryptionKey | UserDeviceModule | |
| (3) LoginSession | LoginSession | VoiceCallModule | |
| (4) PlatformSupport | PlatformSupport | UserDeviceModule | |
| (5) UserAccount | UserAccount | UserAccountModule | |
| (6) UserDevice | UserDevice | UserDeviceModule |
| AppVersion | UserDeviceModule |
| Property | Type | Entity | Reference | Module |
| (1) PlatformSupport | LONG | AppVersion | PlatformSupport | UserDeviceModule |
| (2) ReleaseChannel | STRING | AppVersion | ||
| (3) ReleaseDate | DATE | AppVersion | ||
| (4) SizeMegabytes | STRING | AppVersion | ||
| (5) VersionString | STRING | AppVersion |
Example:
final AppVersion appversion = (AppVersion) invokeModule(USER_DEVICE_MODULE + "/appversion/" + id, AppVersion.class);| EncryptionKey | UserDeviceModule |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | EncryptionKey | ||
| (2) KeyType | STRING | EncryptionKey | ||
| (3) PublicKey | STRING | EncryptionKey | ||
| (4) RevokedAt | DATE | EncryptionKey | ||
| (5) UserAccount | LONG | EncryptionKey | UserAccount | UserAccountModule |
| (6) UserDevice | LONG | EncryptionKey | UserDevice | UserDeviceModule |
Example:
final EncryptionKey encryptionkey = (EncryptionKey) invokeModule(USER_DEVICE_MODULE + "/encryptionkey/" + id, EncryptionKey.class);| PlatformSupport | UserDeviceModule |
| Property | Type | Entity | Reference | Module |
| (1) MinOsVersion | STRING | PlatformSupport | ||
| (2) Name | STRING | PlatformSupport | ||
| (3) Notes | STRING | PlatformSupport | ||
| (4) Status | STRING | PlatformSupport | ||
| (5) Type | STRING | PlatformSupport |
Example:
final PlatformSupport platformsupport = (PlatformSupport) invokeModule(USER_DEVICE_MODULE + "/platformsupport/" + id, PlatformSupport.class);| UserDevice | UserDeviceModule |
| Property | Type | Entity | Reference | Module |
| (1) AppVersion | LONG | UserDevice | AppVersion | UserDeviceModule |
| (2) CreatedAt | DATE | UserDevice | ||
| (3) DeviceModel | STRING | UserDevice | ||
| (4) IsPrimary | BOOL | UserDevice | ||
| (5) LastSeenAt | DATE | UserDevice | ||
| (6) OsVersion | STRING | UserDevice | ||
| (7) PlatformSupport | LONG | UserDevice | PlatformSupport | UserDeviceModule |
| (8) UserAccount | LONG | UserDevice | UserAccount | UserAccountModule |
Example:
final UserDevice userdevice = (UserDevice) invokeModule(USER_DEVICE_MODULE + "/userdevice/" + id, UserDevice.class);| Contact | Donate | Imprint |