summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLEndAudioPassThru.h
blob: aba124a7e734e12d4e65793c44defcf57695afd9 (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
26
27
28
29
30
31
32
33
//  SDLEndAudioPassThru.h
//



#import "SDLRPCRequest.h"

/**
 * When this request is invoked, the audio capture stops
 * <p>
 * Function Group: AudioPassThru
 * <p>
 * <b>HMILevel needs to be FULL, LIMITED or BACKGROUND</b>
 * </p>
 * Since <b>SmartDeviceLink 2.0</b><br>
 * see SDLPerformAudioPassThru
 */
@interface SDLEndAudioPassThru : SDLRPCRequest {}

/**
 * Constructs a new SDLEndAudioPassThru object
 */
-(id) init;
/**
 * Constructs a new SDLEndAudioPassThru object indicated by the NSMutableDictionary
 * parameter
 * <p>
 *
 * @param dict The NSMutableDictionary to use
 */
-(id) initWithDictionary:(NSMutableDictionary*) dict;

@end