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

- (instancetype)initWithFileName:(NSString *)fileName;


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

@end