#import <Foundation/Foundation.h>
#import <Cordova/CDVPlugin.h>
#import <Cordova/CDVInvokedUrlCommand.h>

@interface INDIndigitallInboxBridge : CDVPlugin


+ (void) getMessageCountWithPlugin:(CDVPlugin *)plugin command:(CDVInvokedUrlCommand *)command;
+ (void) getInboxWithPlugin:(CDVPlugin *)plugin command:(CDVInvokedUrlCommand *)command;
+ (void) getNextPageWithPlugin:(CDVPlugin *)plugin command:(CDVInvokedUrlCommand *)command;
+ (void) massiveEditNotificationsWithSendingIdsListWithPlugin:(CDVPlugin *)plugin command:(CDVInvokedUrlCommand *)command;
+ (void) massiveEditNotificationsWithInitialStatusWithPlugin:(CDVPlugin *)plugin command:(CDVInvokedUrlCommand *)command;
+ (void) getInfoFromNotificationWithSendingIdWithPlugin:(CDVPlugin *)plugin command:(CDVInvokedUrlCommand *)command;
+ (void) modifyStatusFromNotificationWithSendingIdWithPlugin:(CDVPlugin *)plugin command:(CDVInvokedUrlCommand *)command;

@end