summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLSetGlobalProperties.h
blob: f7efbf06191da29a1a1c90532b9caeb4bca5fb1f (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
//  SDLSetGlobalProperties.h
//
//  Copyright (c) 2014 Ford Motor Company. All rights reserved.


#import "SDLRPCRequest.h"

#import "SDLImage.h"
#import "SDLKeyboardProperties.h"

@interface SDLSetGlobalProperties : SDLRPCRequest {}

-(id) init;
-(id) initWithDictionary:(NSMutableDictionary*) dict;

@property(strong) NSMutableArray* helpPrompt;
@property(strong) NSMutableArray* timeoutPrompt;
@property(strong) NSString* vrHelpTitle;
@property(strong) NSMutableArray* vrHelp;
@property(strong) NSString* menuTitle;
@property(strong) SDLImage* menuIcon;
@property(strong) SDLKeyboardProperties* keyboardProperties;

@end