初始化
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
package com.ifish.jpush.schedule;
|
||||
|
||||
import com.google.gson.JsonObject;
|
||||
import com.google.gson.annotations.Expose;
|
||||
import com.ifish.jpush.common.resp.BaseResult;
|
||||
|
||||
public class ScheduleResult extends BaseResult{
|
||||
|
||||
@Expose String schedule_id;
|
||||
@Expose String name;
|
||||
@Expose Boolean enabled;
|
||||
@Expose JsonObject trigger;
|
||||
@Expose JsonObject push;
|
||||
|
||||
public String getSchedule_id() {
|
||||
return schedule_id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
public JsonObject getTrigger() {
|
||||
return trigger;
|
||||
}
|
||||
|
||||
public JsonObject getPush() {
|
||||
return push;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user