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

#import "SDLRPCMessage.h"

@class SDLVehicleDataNotificationStatus;
@class SDLECallConfirmationStatus;


@interface SDLECallInfo : SDLRPCStruct {
}

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

@property (strong) SDLVehicleDataNotificationStatus *eCallNotificationStatus;
@property (strong) SDLVehicleDataNotificationStatus *auxECallNotificationStatus;
@property (strong) SDLECallConfirmationStatus *eCallConfirmationStatus;

@end