ScheduleResult.java 791 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.goafanti.message.schedule;
  2. import com.google.gson.JsonObject;
  3. import com.google.gson.annotations.Expose;
  4. import cn.jiguang.common.resp.BaseResult;
  5. public class ScheduleResult extends BaseResult{
  6. private static final long serialVersionUID = 995450157929190757L;
  7. @Expose String schedule_id;
  8. @Expose String name;
  9. @Expose Boolean enabled;
  10. @Expose JsonObject trigger;
  11. @Expose JsonObject push;
  12. public String getSchedule_id() {
  13. return schedule_id;
  14. }
  15. public String getName() {
  16. return name;
  17. }
  18. public Boolean getEnabled() {
  19. return enabled;
  20. }
  21. public JsonObject getTrigger() {
  22. return trigger;
  23. }
  24. public JsonObject getPush() {
  25. return push;
  26. }
  27. }