summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLControlFramePayloadAudioStartServiceAck.h
blob: 9a9dc95f4375a34b61ce41f83806520721054cdc (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
//
//  SDLControlFramePayloadAudioStartServiceAck.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 SDLControlFramePayloadAudioStartServiceAck : NSObject <SDLControlFramePayloadType>

/// Max transport unit to be used for this service. If not included the client should use the one set via the RPC service or protocol version default.
@property (assign, nonatomic, readonly) int64_t mtu;

- (instancetype)initWithMTU:(int64_t)mtu;

@end

NS_ASSUME_NONNULL_END