#import <Foundation/Foundation.h>
#import <Cordova/CDVPlugin.h>
#import <Cordova/CDVPluginResult.h>
#import <Indigitall/Indigitall.h>

NS_ASSUME_NONNULL_BEGIN

@interface CDVIndigitallInbox : CDVPlugin

@property (nonatomic)INInbox *inbox;
- (void) getMessageCount: (CDVInvokedUrlCommand *)command;
- (void) getInbox: (CDVInvokedUrlCommand *)command;
- (void) getNextPage: (CDVInvokedUrlCommand *)command;
- (void) massiveEditNotificationsWithSendingIdsList: (CDVInvokedUrlCommand *)command;
- (void) massiveEditNotificationsWithInitialStatus: (CDVInvokedUrlCommand *)command;
- (void) getInfoFromNotificationWithSendingId: (CDVInvokedUrlCommand *)command;
- (void) modifyStatusFromNotificationWithSendingId: (CDVInvokedUrlCommand *)command;

@end

NS_ASSUME_NONNULL_END
