summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLControlFramePayloadNak.h
blob: 41781cb2e6f492c77d310ca67b8e1b82f85d45ca (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
25
//
//  SDLControlFramePayloadNak.h
//  SmartDeviceLink-iOS
//
//  Created by Joel Fischer on 7/20/17.
//  Copyright © 2017 smartdevicelink. All rights reserved.
//

#import <Foundation/Foundation.h>

#import "SDLControlFramePayloadType.h"


NS_ASSUME_NONNULL_BEGIN

@interface SDLControlFramePayloadNak : NSObject <SDLControlFramePayloadType>

/// An array of rejected parameters such as: [`hashId`]
@property (copy, nonatomic, readonly, nullable) NSArray<NSString *> *rejectedParams;

- (instancetype)initWithRejectedParams:(nullable NSArray<NSString *> *)rejectedParams;

@end

NS_ASSUME_NONNULL_END