| Contact | Donate | Imprint |
| 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 |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /voiceparticipant | findAllVoiceParticipant() | VoiceSessionModule | GET | VoiceParticipant |
| (2) /voiceparticipant | insertVoiceParticipant(voiceparticipant) | VoiceSessionModule | POST | VoiceParticipant |
| (3) /voiceparticipant/voicesession/{id} | findAllVoiceParticipantOfVoiceSession(id) | VoiceSessionModule | GET | VoiceSession VoiceParticipant |
| (4) /voiceparticipant/user/{id} | findAllVoiceParticipantOfUser(id) | VoiceSessionModule | GET | UserAccount VoiceParticipant |
| (5) /voiceparticipant/{id} | deleteVoiceParticipantById(id) | VoiceSessionModule | DELETE | VoiceParticipant |
| (6) /voiceparticipant/{id} | updateVoiceParticipantById(voiceparticipant) | VoiceSessionModule | PUT | VoiceParticipant |
| (7) /voiceparticipant/{id} | findVoiceParticipantById(id) | VoiceSessionModule | GET | VoiceParticipant |
Example:
final VoiceParticipant voiceparticipant = (VoiceParticipant) invokeModule(VOICE_SESSION_MODULE + "/voiceparticipant/" + id, VoiceParticipant.class);| Contact | Donate | Imprint |