AWSLexAudioPlayerDelegate

Objective-C

@protocol AWSLexAudioPlayerDelegate <NSObject>

@optional

/*
 * Sent to delegate when the Audio playback starts.
 */
- (void)interactionKitOnAudioPlaybackStarted:(AWSLexInteractionKit *)interactionKit;

/*
 * Sent to delegate when the Audio playback finished.
 */
- (void)interactionKitOnAudioPlaybackFinished:(AWSLexInteractionKit *)interactionKit;

@end

Swift

protocol AWSLexAudioPlayerDelegate : NSObjectProtocol

Undocumented