blob: 48cca6a6daa2e243c6a8cb0f5a4bbf1f04933004 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//
// SDLDialNumber.h
// SmartDeviceLink-iOS
#import "SDLRPCRequest.h"
/**
This RPC is used to tell the head unit to use bluetooth to dial a phone number using the phone.
@since SDL 4.0
*/
@interface SDLDialNumber : SDLRPCRequest
- (instancetype)init;
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
/**
* Up to 40 character string representing the phone number. All characters stripped except for '0'-'9', '*', '#', ',', ';', and '+'
*/
@property (strong, nonatomic) NSString *number;
@end
|