summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLResetGlobalProperties.h
blob: e45e458045b60401360e8006e212e511ba552e7a (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
36
37
38
39
40
//  SDLResetGlobalProperties.h
//


#import "SDLRPCRequest.h"

#import "SDLGlobalProperty.h"

/**
 * Resets the passed global properties to their default values as defined by
 * SDL
 * <p>
 * The HELPPROMPT global property default value is generated by SDL consists of
 * the first vrCommand of each Command Menu item defined at the moment PTT is
 * pressed<br/>
 * The TIMEOUTPROMPT global property default value is the same as the HELPPROMPT
 * global property default value
 * <p>
 * <b>HMILevel needs to be FULL, LIMITED or BACKGROUND</b>
 * </p>
 *
 * Since SmartDeviceLink 1.0
 * See SetGlobalProperties
 */

NS_ASSUME_NONNULL_BEGIN

@interface SDLResetGlobalProperties : SDLRPCRequest

- (instancetype)initWithProperties:(NSArray<SDLGlobalProperty> *)properties;

/**
 * @abstract An array of one or more GlobalProperty enumeration elements
 * indicating which global properties to reset to their default value
 */
@property (strong) NSMutableArray<SDLGlobalProperty> *properties;

@end

NS_ASSUME_NONNULL_END