summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPhoneCapability.h
blob: 8dce8c79723b56e60211c9baaa0380bb531f4c98 (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
//
//  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

@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