summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLTextField.h
blob: 64dee37b5f05a852a955896f623b618100f4b7b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//  SDLTextField.h
//
//  Copyright (c) 2014 Ford Motor Company. All rights reserved.

#import "SDLRPCMessage.h"

#import "SDLTextFieldName.h"
#import "SDLCharacterSet.h"

@interface SDLTextField : SDLRPCStruct {}

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

@property(strong) SDLTextFieldName* name;
@property(strong) SDLCharacterSet* characterSet;
@property(strong) NSNumber* width;
@property(strong) NSNumber* rows;

@end