summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLOnPermissionsChange.h
blob: 267a63a10d9b5909088c4eb112e266555a755a56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//  SDLOnPermissionsChange.h
//

#import "SDLRPCNotification.h"


/**
 * Provides update to app of which sets of functions are available
 *
 * @since SDL 2.0
 */
@interface SDLOnPermissionsChange : SDLRPCNotification {
}

/**
 * Constructs a newly allocated SDLOnPermissionsChange object
 */
- (instancetype)init;

/**
 * Constructs a newly allocated SDLOnPermissionsChange object indicated by the dictionary parameter
 * @param dict The dictionary to use
 */
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;

/**
 * @abstract Describes change in permissions for a given set of RPCs
 *
 * Required, Array of SDLPermissionItem, Array size 0 - 500
 *
 * @see SDLPermissionItem
 */
@property (strong) NSMutableArray *permissionItem;

@end