12345678910111213141516171819202122232425262728293031323334353637 |
- namespace OASystem.API.OAMethodLib.APNs
- {
- public interface IAPNsService
- {
-
-
-
-
- string GetnerateAPNsJWTToken();
-
-
-
-
-
-
-
-
-
-
- Task<Result> PushNotification(string apnsTopic, string deviceToken, NotificationType type, string title, string subtitle, string body);
-
-
-
-
-
-
-
-
-
-
- Task<Result> PushNotification1(string apnsTopic, string deviceToken, NotificationType type, string title, string subtitle, string body, bool isTarget, string viewCode, PageParam_PriceAuditH5 pageParam);
- }
- }
|