Last active
December 24, 2015 22:08
-
-
Save jpotts18/6870173 to your computer and use it in GitHub Desktop.
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 me.jeffpotter.generaldietitian.models; | |
| import com.google.gson.annotations.SerializedName; | |
| import java.security.SecureRandom; | |
| import java.util.List; | |
| /** | |
| * User: jpotts | |
| * Date: 8/27/13 | |
| * Time: 3:07 PM | |
| */ | |
| public class Report { | |
| long id; | |
| @SerializedName("published_at") | |
| String publishedAt; | |
| String response; | |
| @SerializedName("start") | |
| String startDate; | |
| @SerializedName("end") | |
| String endDate; | |
| @SerializedName("previous_report_id") | |
| int previousReportId; | |
| @SerializedName("next_report_id") | |
| int nextReportId; | |
| @SerializedName("dietitian_name") | |
| String dietitianName; | |
| List<Meal> meals; | |
| List<PhysicalActivity> activities; | |
| List<DailyInput> parameters; | |
| List<Weight> weights; | |
| List<Message> messages; | |
| @SerializedName("media_response") | |
| MediaResponse mediaResponse; | |
| List<ReportVariables> points; | |
| @SerializedName("md_video") | |
| Video mdVideo; | |
| public long getId() { | |
| return id; | |
| } | |
| public void setId(long id) { | |
| this.id = id; | |
| } | |
| public String getResponse() { | |
| return response; | |
| } | |
| public void setResponse(String response) { | |
| this.response = response; | |
| } | |
| public String getPublishedAt() { | |
| return publishedAt; | |
| } | |
| public void setPublishedAt(String publishedAt) { | |
| this.publishedAt = publishedAt; | |
| } | |
| public String getStartDate() { | |
| return startDate; | |
| } | |
| public void setStartDate(String startDate) { | |
| this.startDate = startDate; | |
| } | |
| public String getEndDate() { | |
| return endDate; | |
| } | |
| public void setEndDate(String endDate) { | |
| this.endDate = endDate; | |
| } | |
| public String getDietitianName() { | |
| return dietitianName; | |
| } | |
| public void setDietitianName(String dietitianName) { | |
| this.dietitianName = dietitianName; | |
| } | |
| public int getPreviousReportId() { | |
| return previousReportId; | |
| } | |
| public void setPreviousReportId(int previousReportId) { | |
| this.previousReportId = previousReportId; | |
| } | |
| public int getNextReportId() { | |
| return nextReportId; | |
| } | |
| public void setNextReportId(int nextReportId) { | |
| this.nextReportId = nextReportId; | |
| } | |
| public List<Meal> getMeals() { | |
| return meals; | |
| } | |
| public void setMeals(List<Meal> meals) { | |
| this.meals = meals; | |
| } | |
| public List<PhysicalActivity> getActivities() { | |
| return activities; | |
| } | |
| public void setActivities(List<PhysicalActivity> activities) { | |
| this.activities = activities; | |
| } | |
| public List<DailyInput> getParameters() { | |
| return parameters; | |
| } | |
| public void setParameters(List<DailyInput> parameters) { | |
| this.parameters = parameters; | |
| } | |
| public List<Weight> getWeights() { | |
| return weights; | |
| } | |
| public void setWeights(List<Weight> weights) { | |
| this.weights = weights; | |
| } | |
| public List<Message> getMessages() { | |
| return messages; | |
| } | |
| public void setMessages(List<Message> messages) { | |
| this.messages = messages; | |
| } | |
| public MediaResponse getMediaResponse() { | |
| return mediaResponse; | |
| } | |
| public void setMediaResponse(MediaResponse mediaResponse) { | |
| this.mediaResponse = mediaResponse; | |
| } | |
| public List<ReportVariables> getPoints() { | |
| return points; | |
| } | |
| public void setPoints(List<ReportVariables> points) { | |
| this.points = points; | |
| } | |
| public Video getMdVideo() { | |
| return mdVideo; | |
| } | |
| public void setMdVideo(Video mdVideo) { | |
| this.mdVideo = mdVideo; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment