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

#import "SDLRPCMessage.h"

@class SDLImageFieldName;
@class SDLImageResolution;


@interface SDLImageField : SDLRPCStruct {
}

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

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

@end