summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLGetInteriorVehicleDataConsentResponse.h
blob: 7aee83e57e9cb4949ecc53e92ca6d3e9bc5c5c20 (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
//
//  SDLGetInteriorVehicleDataConsentResponse.h
//  SmartDeviceLink
//
//  Created by standa1 on 7/25/19.
//  Copyright © 2019 smartdevicelink. All rights reserved.
//

#import "SDLRPCResponse.h"

NS_ASSUME_NONNULL_BEGIN

@interface SDLGetInteriorVehicleDataConsentResponse : SDLRPCResponse

/**
 This array has the same size as "moduleIds" in the request; each element corresponding to one moduleId
 "true" - if SDL grants the permission for the requested module
 "false" - SDL denies the permission for the requested module.
 
 Optional
 */
@property (strong, nonatomic, nullable) NSArray<NSNumber<SDLBool> *> *allowed;

@end

NS_ASSUME_NONNULL_END