added Zoom User Settings (UZH)
This commit is contained in:
parent
fda6c80eb4
commit
89adc8cd26
1 changed files with 11 additions and 0 deletions
|
@ -163,6 +163,8 @@ public interface ZoomRoomRequestResponse {
|
||||||
|
|
||||||
static class InMeetingSettings {
|
static class InMeetingSettings {
|
||||||
|
|
||||||
|
@JsonProperty final boolean virtual_background = false;
|
||||||
|
@JsonProperty final VirtualBackgroundSettings virtual_background_settings = new VirtualBackgroundSettings();
|
||||||
@JsonProperty final boolean auto_saving_chat;
|
@JsonProperty final boolean auto_saving_chat;
|
||||||
@JsonProperty final int allow_users_save_chats;
|
@JsonProperty final int allow_users_save_chats;
|
||||||
@JsonProperty final int allow_participants_chat_with;
|
@JsonProperty final int allow_participants_chat_with;
|
||||||
|
@ -178,6 +180,13 @@ public interface ZoomRoomRequestResponse {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||||
|
static class VirtualBackgroundSettings {
|
||||||
|
@JsonProperty final boolean enable = false;
|
||||||
|
@JsonProperty final boolean allow_upload_custom = false;
|
||||||
|
@JsonProperty final boolean allow_videos = false;
|
||||||
|
}
|
||||||
|
|
||||||
static class FeaturesSettings {
|
static class FeaturesSettings {
|
||||||
@JsonProperty final String concurrent_meeting;
|
@JsonProperty final String concurrent_meeting;
|
||||||
public FeaturesSettings(final String concurrent_meeting) {
|
public FeaturesSettings(final String concurrent_meeting) {
|
||||||
|
@ -186,6 +195,8 @@ public interface ZoomRoomRequestResponse {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||||
static class UserResponse {
|
static class UserResponse {
|
||||||
final String id;
|
final String id;
|
||||||
|
|
Loading…
Reference in a new issue