// // SDLControlFramePayloadAudioStartServiceAck.h // SmartDeviceLink-iOS // // Created by Joel Fischer on 7/24/17. // Copyright © 2017 smartdevicelink. All rights reserved. // #import #import "SDLControlFramePayloadType.h" NS_ASSUME_NONNULL_BEGIN @interface SDLControlFramePayloadAudioStartServiceAck : NSObject /// 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