Skip to content

Instantly share code, notes, and snippets.

@balvinder294
Last active January 29, 2021 15:58
Show Gist options
  • Save balvinder294/976ae1600d0a82971c876eaed777523b to your computer and use it in GitHub Desktop.
Save balvinder294/976ae1600d0a82971c876eaed777523b to your computer and use it in GitHub Desktop.
DTO for handling response for zoom meeting occurence fields - https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meeting | By https://tekraze.com
package xyz;
import java.io.Serializable;
public class ZoomMeetingOccurenceDTO implements Serializable {
private static final long serialVersionUID = 1L;
private String occurrence_id;
private String start_time;
private Integer duration;
private String status;
public String getOccurrence_id() {
return occurrence_id;
}
public void setOccurrence_id(String occurrence_id) {
this.occurrence_id = occurrence_id;
}
public String getStart_time() {
return start_time;
}
public void setStart_time(String start_time) {
this.start_time = start_time;
}
public Integer getDuration() {
return duration;
}
public void setDuration(Integer duration) {
this.duration = duration;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
@Override
public String toString() {
return "ZoomMeetingOccurenceDTO [duration=" + getDuration() + ", occurrence_id=" + getOccurrence_id() + ", start_time="
+ getStart_time() + ", status=" + getStatus() + "]";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment