NotificationManager/Pod/Classes/PushNotificationAlert.h
2015-12-17 16:55:03 +01:00

25 lines
616 B
Objective-C

//
// PushNotificationAlert.h
// Pods
//
// Created by Giuseppe Nucifora on 17/12/15.
//
//
#import <Foundation/Foundation.h>
@interface PushNotificationAlert : NSObject
+ (instancetype) AlertWithInfo:(NSDictionary *)alertInfo;
- (instancetype) initWithAlertInfo:(NSDictionary *)alertInfo;
@property (nonatomic, strong, readonly) NSString *title;
@property (nonatomic, strong, readonly) NSString *body;
@property (nonatomic, strong, readonly) NSString *actionLocalizedKey;
@property (nonatomic, strong, readonly) NSString *localizedKey;
@property (nonatomic, strong, readonly) NSArray *localizedArgs;
@end