summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLControlFramePayloadEndService.h
blob: 17790ab9e6c664053dd0cadef7894ac552b4fb85 (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
//
//  SDLControlFramePayloadEndService.h
//  SmartDeviceLink-iOS
//
//  Created by Joel Fischer on 7/24/17.
//  Copyright © 2017 smartdevicelink. All rights reserved.
//

#import <Foundation/Foundation.h>

#import "SDLControlFramePayloadType.h"

NS_ASSUME_NONNULL_BEGIN

@interface SDLControlFramePayloadEndService : NSObject <SDLControlFramePayloadType>

/// Hash ID supplied in the StartServiceACK for this service type
@property (assign, nonatomic, readonly) int32_t hashId;

- (instancetype)initWithHashId:(int32_t)hashId;

@end

NS_ASSUME_NONNULL_END