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

#import "SDLRPCMessage.h"

#import "SDLCarModeStatus.h"
#import "SDLPowerModeQualificationStatus.h"
#import "SDLPowerModeStatus.h"


@interface SDLClusterModeStatus : SDLRPCStruct

@property (strong) NSNumber *powerModeActive;
@property (strong) SDLPowerModeQualificationStatus powerModeQualificationStatus;
@property (strong) SDLCarModeStatus carModeStatus;
@property (strong) SDLPowerModeStatus powerModeStatus;

@end