| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) CallParticipant | CallParticipant | VoiceCallModule | |
| (2) Chat | Chat | ChatModule | |
| (3) LoginSession | LoginSession | VoiceCallModule | |
| (4) UserAccount | UserAccount | UserAccountModule | |
| (5) UserDevice | UserDevice | UserDeviceModule | |
| (6) VoiceCall | VoiceCall | VoiceCallModule |
| CallParticipant | VoiceCallModule |
| Property | Type | Entity | Reference | Module |
| (1) ConnectionQuality | STRING | CallParticipant | ||
| (2) JoinedAt | DATE | CallParticipant | ||
| (3) LeftAt | DATE | CallParticipant | ||
| (4) UserAccount | LONG | CallParticipant | UserAccount | UserAccountModule |
| (5) VoiceCall | LONG | CallParticipant | VoiceCall | VoiceCallModule |
Example:
final CallParticipant callparticipant = (CallParticipant) invokeModule(VOICE_CALL_MODULE + "/callparticipant/" + id, CallParticipant.class);| LoginSession | VoiceCallModule |
| Property | Type | Entity | Reference | Module |
| (1) IpAddress | STRING | LoginSession | ||
| (2) IsActive | BOOL | LoginSession | ||
| (3) LoggedInAt | DATE | LoginSession | ||
| (4) LoggedOutAt | DATE | LoginSession | ||
| (5) LoginMethod | STRING | LoginSession | ||
| (6) UserAccount | LONG | LoginSession | UserAccount | UserAccountModule |
| (7) UserDevice | LONG | LoginSession | UserDevice | UserDeviceModule |
Example:
final LoginSession loginsession = (LoginSession) invokeModule(VOICE_CALL_MODULE + "/loginsession/" + id, LoginSession.class);| VoiceCall | VoiceCallModule |
| Property | Type | Entity | Reference | Module |
| (1) CallType | STRING | VoiceCall | ||
| (2) Chat | LONG | VoiceCall | Chat | ChatModule |
| (3) Codec | STRING | VoiceCall | ||
| (4) EndedAt | DATE | VoiceCall | ||
| (5) InitiatorUserAccount | LONG | VoiceCall | UserAccount | UserAccountModule |
| (6) IsGroupCall | BOOL | VoiceCall | ||
| (7) IsRecorded | BOOL | VoiceCall | ||
| (8) MaxParticipants | LONG | VoiceCall | ||
| (9) StartedAt | DATE | VoiceCall |
Example:
final VoiceCall voicecall = (VoiceCall) invokeModule(VOICE_CALL_MODULE + "/voicecall/" + id, VoiceCall.class);| Contact | Donate | Imprint |