| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) BlockedUser | BlockedUser | CommunitySpaceModule | |
| (2) Chat | Chat | ChatModule | |
| (3) CommunityChat | CommunityChat | CommunitySpaceModule | |
| (4) CommunitySpace | CommunitySpace | CommunitySpaceModule | |
| (5) SecuritySetting | SecuritySetting | CommunitySpaceModule | |
| (6) UserAccount | UserAccount | UserAccountModule |
| BlockedUser | CommunitySpaceModule |
| Property | Type | Entity | Reference | Module |
| (1) BlockedUserAccount | LONG | BlockedUser | UserAccount | UserAccountModule |
| (2) CreatedAt | DATE | BlockedUser | ||
| (3) UserAccount | LONG | BlockedUser | UserAccount | UserAccountModule |
Example:
final BlockedUser blockeduser = (BlockedUser) invokeModule(COMMUNITY_SPACE_MODULE + "/blockeduser/" + id, BlockedUser.class);| CommunityChat | CommunitySpaceModule |
| Property | Type | Entity | Reference | Module |
| (1) Chat | LONG | CommunityChat | Chat | ChatModule |
| (2) CommunitySpace | LONG | CommunityChat | CommunitySpace | CommunitySpaceModule |
| (3) IsAnnouncement | BOOL | CommunityChat |
Example:
final CommunityChat communitychat = (CommunityChat) invokeModule(COMMUNITY_SPACE_MODULE + "/communitychat/" + id, CommunityChat.class);| CommunitySpace | CommunitySpaceModule |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | CommunitySpace | ||
| (2) Description | STRING | CommunitySpace | ||
| (3) Name | STRING | CommunitySpace | ||
| (4) OwnerUserAccount | LONG | CommunitySpace | UserAccount | UserAccountModule |
Example:
final CommunitySpace communityspace = (CommunitySpace) invokeModule(COMMUNITY_SPACE_MODULE + "/communityspace/" + id, CommunitySpace.class);| SecuritySetting | CommunitySpaceModule |
| Property | Type | Entity | Reference | Module |
| (1) FingerprintLockEnabled | BOOL | SecuritySetting | ||
| (2) IsTwoStepVerificationEnabled | BOOL | SecuritySetting | ||
| (3) LastUpdatedAt | DATE | SecuritySetting | ||
| (4) PasskeyEnabled | BOOL | SecuritySetting | ||
| (5) SecretCodeEnabled | BOOL | SecuritySetting | ||
| (6) TwoStepEmail | STRING | SecuritySetting | ||
| (7) UserAccount | LONG | SecuritySetting | UserAccount | UserAccountModule |
Example:
final SecuritySetting securitysetting = (SecuritySetting) invokeModule(COMMUNITY_SPACE_MODULE + "/securitysetting/" + id, SecuritySetting.class);| Contact | Donate | Imprint |