@@ -950,12 +950,13 @@ public DefaultResult bindMobile(String registrationId, String mobile)
950950 }
951951
952952 // ----------------------- Schedule
953-
954953 /**
955954 * Create a single schedule.
956955 * @param name The schedule name.
957956 * @param time The push time, format is 'yyyy-MM-dd HH:mm:ss'
958957 * @param push The push payload.
958+ * @param masterSecret master secret
959+ * @param appKey app key
959960 * @return The created scheduleResult instance.
960961 * @throws APIConnectionException if a remote or network exception occurs.
961962 * @throws APIRequestException if a request exception occurs.
@@ -983,6 +984,8 @@ public ScheduleResult createSingleSchedule(String name, String time, PushPayload
983984 * @param end The schedule expiration date, format 'yyyy-MM-dd HH:mm:ss'.
984985 * @param time The push time, format 'HH:mm:ss'
985986 * @param push The push payload.
987+ * @param masterSecret master secret
988+ * @param appKey app key
986989 * @return The created scheduleResult instance.
987990 * @throws APIConnectionException if a remote or network exception occurs.
988991 * @throws APIRequestException if a request exception occurs.
@@ -1002,6 +1005,8 @@ public ScheduleResult createDailySchedule(String name, String start, String end,
10021005 * @param time The push time, format 'HH:mm:ss'
10031006 * @param frequency The custom frequency.
10041007 * @param push The push payload.
1008+ * @param masterSecret master secret
1009+ * @param appKey app key
10051010 * @return The created scheduleResult instance.
10061011 * @throws APIConnectionException if a remote or network exception occurs.
10071012 * @throws APIRequestException if a request exception occurs.
@@ -1021,6 +1026,8 @@ public ScheduleResult createDailySchedule(String name, String start, String end,
10211026 * @param time The push time, format 'HH:mm:ss'
10221027 * @param days The appointed days.
10231028 * @param push The push payload.
1029+ * @param masterSecret master secret
1030+ * @param appKey app key
10241031 * @return The created scheduleResult instance.
10251032 * @throws APIConnectionException if a remote or network exception occurs.
10261033 * @throws APIRequestException if a request exception occurs.
@@ -1047,6 +1054,8 @@ public ScheduleResult createWeeklySchedule(String name, String start, String end
10471054 * @param frequency The custom frequency.
10481055 * @param days The appointed days.
10491056 * @param push The push payload.
1057+ * @param masterSecret master secret
1058+ * @param appKey app key
10501059 * @return The created scheduleResult instance.
10511060 * @throws APIConnectionException if a remote or network exception occurs.
10521061 * @throws APIRequestException if a request exception occurs.
@@ -1071,6 +1080,8 @@ public ScheduleResult createWeeklySchedule(String name, String start, String end
10711080 * @param time The push time, format 'HH:mm:ss'.
10721081 * @param points The appointed days.
10731082 * @param push The push payload.
1083+ * @param masterSecret master secret
1084+ * @param appKey app key
10741085 * @return The created scheduleResult instance.
10751086 * @throws APIConnectionException if a remote or network exception occurs.
10761087 * @throws APIRequestException if a request exception occurs.
@@ -1091,6 +1102,8 @@ public ScheduleResult createMonthlySchedule(String name, String start, String en
10911102 * @param frequency The custom frequency.
10921103 * @param points The appointed days.
10931104 * @param push The push payload.
1105+ * @param masterSecret master secret
1106+ * @param appKey app key
10941107 * @return The created scheduleResult instance.
10951108 * @throws APIConnectionException if a remote or network exception occurs.
10961109 * @throws APIRequestException if a request exception occurs.
0 commit comments