summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPhoneCapability.h
blob: 6dcbcfca330f3c603f9a652bea800672fa3cd531 (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
28
29
//
//  SDLPhoneCapability.h
//  SmartDeviceLink-iOS
//
//  Created by Joel Fischer on 7/11/17.
//  Copyright © 2017 smartdevicelink. All rights reserved.
//

#import "SDLRPCStruct.h"

NS_ASSUME_NONNULL_BEGIN

/**
 Extended capabilities of the module's phone feature
 */
@interface SDLPhoneCapability : SDLRPCStruct

- (instancetype)initWithDialNumber:(BOOL)dialNumberEnabled;

/**
 Whether or not the DialNumber RPC is enabled.
 
 Boolean, optional
 */
@property (nullable, strong, nonatomic) NSNumber *dialNumberEnabled;

@end

NS_ASSUME_NONNULL_END