| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Channel | Channel | UserAccountModule | Discord |
| (2) DocumentLeak | DocumentLeak | VoiceSessionModule | Discord |
| (3) Message | Message | UserAccountModule | Discord |
| (4) Reaction | Reaction | VoiceSessionModule | Discord |
| (5) UserAccount | UserAccount | UserAccountModule | Discord |
| (6) VoiceParticipant | VoiceParticipant | VoiceSessionModule | Discord |
| (7) VoiceSession | VoiceSession | VoiceSessionModule | Discord |
| DocumentLeak | VoiceSessionModule | Discord |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | DocumentLeak | ||
| (2) EndDate | DATE | DocumentLeak | ||
| (3) Name | STRING | DocumentLeak | ||
| (4) RelatedConflict | STRING | DocumentLeak | ||
| (5) SourcePlatform | STRING | DocumentLeak | ||
| (6) StartDate | DATE | DocumentLeak |
Example:
final DocumentLeak documentleak = (DocumentLeak) invokeModule(VOICE_SESSION_MODULE + "/documentleak/" + id, DocumentLeak.class);| Reaction | VoiceSessionModule | Discord |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Reaction | ||
| (2) Emoji | STRING | Reaction | ||
| (3) Message | LONG | Reaction | Message | UserAccountModule |
| (4) User | LONG | Reaction | UserAccount | UserAccountModule |
Example:
final Reaction reaction = (Reaction) invokeModule(VOICE_SESSION_MODULE + "/reaction/" + id, Reaction.class);| VoiceParticipant | VoiceSessionModule | Discord |
| Property | Type | Entity | Reference | Module |
| (1) IsDeafened | BOOL | VoiceParticipant | ||
| (2) IsMuted | BOOL | VoiceParticipant | ||
| (3) JoinedAt | DATE | VoiceParticipant | ||
| (4) LeftAt | DATE | VoiceParticipant | ||
| (5) User | LONG | VoiceParticipant | UserAccount | UserAccountModule |
| (6) VoiceSession | LONG | VoiceParticipant | VoiceSession | VoiceSessionModule |
Example:
final VoiceParticipant voiceparticipant = (VoiceParticipant) invokeModule(VOICE_SESSION_MODULE + "/voiceparticipant/" + id, VoiceParticipant.class);| VoiceSession | VoiceSessionModule | Discord |
| Property | Type | Entity | Reference | Module |
| (1) Channel | LONG | VoiceSession | Channel | UserAccountModule |
| (2) EndedAt | DATE | VoiceSession | ||
| (3) StartedAt | DATE | VoiceSession |
Example:
final VoiceSession voicesession = (VoiceSession) invokeModule(VOICE_SESSION_MODULE + "/voicesession/" + id, VoiceSession.class);| Contact | Donate | Imprint |