//
//  ALNotificationView.h
//  ChatApp
//
//  Created by Devashish on 06/10/15.
//  Copyright © 2015 AppLogic. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "ALMessage.h"

@interface ALNotificationView : UILabel


@property (retain ,nonatomic) NSString * contactId;

@property (retain ,nonatomic) NSString * checkContactId;

@property (retain, nonatomic) NSNumber * groupId;

@property (retain, nonatomic) NSNumber * conversationId;

-(instancetype)initWithAlMessage:(ALMessage*)alMessage  withAlertMessage: (NSString *) alertMessage;

-(void)nativeNotification:(id)delegate;

-(void)showGroupLeftMessage;

+(void)showLocalNotification:(NSString *)text;

@property (retain, nonatomic) ALMessage * alMessageObject;

-(void)noDataConnectionNotificationView;

-(void)updateChatScreen:(UIViewController*)delegate;

+(void)showNotification:(NSString *)message;
+(void)showPromotionalNotifications:(NSString *)text;


@end
