Skip to content

Instantly share code, notes, and snippets.

@balvinder294
Last active January 29, 2021 15:56
Show Gist options
  • Save balvinder294/a86f11d74312b50b933c81aa773f97b2 to your computer and use it in GitHub Desktop.
Save balvinder294/a86f11d74312b50b933c81aa773f97b2 to your computer and use it in GitHub Desktop.
DTO for handling response of tracking fields for a single zoom meeting - https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meeting | By https://tekraze.com
package xyz;
public class ZoomMeetingTrackingFieldsDTO {
public String field;
public String value;
public Boolean visible;
public String getField() {
return field;
}
public void setField(String field) {
this.field = field;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public Boolean getVisible() {
return visible;
}
public void setVisible(Boolean visible) {
this.visible = visible;
}
@Override
public String toString() {
return "ZoomMeetingTrackingFieldsDTO [field=" + getField() + ", value=" + getValue() + ", visible=" + getVisible() + "]";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment