blob: fddde6c13e98125e315d663ecc0e68dad4e3bf1f (
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
*/
- (instancetype)init;
/**
* Constructs a new SDLEndAudioPassThru object indicated by the NSMutableDictionary
* parameter
* <p>
*
* @param dict The dictionary to use
*/
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
@end
|