summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/public/SDLAlertAudioData.h
blob: 85f907a181f2c6432cb5504457f94f9fcd6921e0 (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
//
//  SDLAlertAudioData.h
//  SmartDeviceLink
//
//  Created by Nicole on 11/9/20.
//  Copyright © 2020 smartdevicelink. All rights reserved.
//

#import "SDLAudioData.h"

NS_ASSUME_NONNULL_BEGIN

/// Audio data for an SDLAlertView
@interface SDLAlertAudioData : SDLAudioData

/// Whether the alert tone should be played before the prompt (if any) is spoken. Defaults to NO.
@property (assign, nonatomic) BOOL playTone;

/// Use another init instead. See superclass SDLAudioData.
- (instancetype)init NS_UNAVAILABLE;

@end

NS_ASSUME_NONNULL_END