Last active
January 29, 2021 15:56
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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