summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLImageField.h
blob: 9e52fd7053d864dff9829a0fb633712f7474ac32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//  SDLImageField.h
//

#import "SDLRPCMessage.h"

#import "SDLImageFieldName.h"

@class SDLImageResolution;


@interface SDLImageField : SDLRPCStruct {
}

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

@property (strong) SDLImageFieldName name;
@property (strong) NSMutableArray *imageTypeSupported;
@property (strong) SDLImageResolution *imageResolution;

@end