summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSetAppIcon.h
blob: eee61deb522ea32aeb97916e71de65e0d6d3f5d4 (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
//  SDLSetAppIcon.h
//


#import "SDLRPCRequest.h"

/**
 * Used to set existing local file on SDL as the app's icon. Not supported on
 * first generation SDL modules.
 * <p>
 *
 * Since SmartDeviceLink 2.0
 */
@interface SDLSetAppIcon : SDLRPCRequest {
}

/**
 * @abstract Constructs a new SDLSetAppIcon object
 */
- (instancetype)init;
/**
 * @abstract Constructs a new SDLSetAppIcon object indicated by the dictionary parameter
 * @param dict The dictionary to use
 */
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;

/**
 * @abstract A file reference name
 * @discussion A String value representing a file reference name
 *            <p>
 *            <b>Notes: </b>Maxlength=500
 */
@property (strong) NSString *syncFileName;

@end