forked from aws-amplify/aws-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AWSLexVoiceButton.h
123 lines (95 loc) · 3.26 KB
/
AWSLexVoiceButton.h
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
//
// Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License").
// You may not use this file except in compliance with the License.
// A copy of the License is located at
//
// http://aws.amazon.com/apache2.0
//
// or in the "license" file accompanying this file. This file is distributed
// on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
// express or implied. See the License for the specific language governing
// permissions and limitations under the License.
//
#import <UIKit/UIKit.h>
#import "AWSLexInteractionKit.h"
NS_ASSUME_NONNULL_BEGIN
@class AWSLexVoiceButton;
FOUNDATION_EXPORT NSString *const AWSLexVoiceButtonErrorDomain;
FOUNDATION_EXPORT NSString *const AWSLexVoiceButtonKey;
typedef NS_ENUM(NSInteger, AWSLexVoiceButtonErrorCode) {
AWSLexVoiceButtonErrorCodeUnknown,
AWSLexVoiceButtonErrorCodeAudioRecordingPermisionDenied
};
@interface AWSLexVoiceButtonResponse : NSObject
/**
Name of the intent being ellicited.
*/
@property (nonatomic, strong, readonly) NSString * _Nullable intent;
/**
Text response.
*/
@property (nonatomic, strong, readonly) NSString * _Nullable outputText;
/**
The slots which are currently filled in an ongoing dialog
*/
@property (nonatomic, strong, readonly) NSDictionary * _Nullable slots;
/**
The slot which is being ellicited for an intent.
*/
@property (nonatomic, strong, readonly) NSString * _Nullable elicitSlot;
/**
The current dialog state.
*/
@property (nonatomic, assign, readonly) AWSLexDialogState dialogState;
/**
The session attributes returned from the service.
*/
@property (nonatomic, strong, readonly) NSDictionary * _Nullable sessionAttributes;
/**
The audio stream . This may be null incase of a text response.
*/
@property (nonatomic, strong, readonly) NSData * _Nullable audioStream;
/**
The format for the audio stream. This may be null if the audion stream is null.
*/
@property (nonatomic, strong, readonly) NSString * _Nullable audioContentType;
/**
Transcript of the voice input to the operation.
*/
@property (nonatomic, strong, readonly) NSString * _Nullable inputTranscript;
@end
@protocol AWSLexVoiceButtonDelegate <NSObject>
@required
/*
* On error response.
*/
- (void)voiceButton:(AWSLexVoiceButton *)button onError:(NSError *)error;
@optional
/*
* Response per service call.
*/
- (void)voiceButton:(AWSLexVoiceButton *)button onResponse:(AWSLexVoiceButtonResponse *)response;
/*
* If the dialog fullfillment is on the client side, this method would be invoked with the filled slots.
*/
- (void)voiceButtononReadyToFullFill:(AWSLexVoiceButton *)button withSlots:(NSDictionary *)slots;
@end
@interface AWSLexVoiceButton : UIView
@property (nonatomic, weak) id<AWSLexVoiceButtonDelegate> delegate;
/**
Enable push transition animation when image switch between microphone and listen image. Default is NO.
*/
@property (nonatomic) BOOL animateOnImageSwitching;
/**
Set color for microphone image. Default is nil.
*/
@property (nonatomic, strong) UIColor *microphoneImageColor;
/**
Set color for inactive microphone image. Default is light grey.
*/
@property (nonatomic, strong) UIColor *lexImageColor;
@property (nonatomic, strong) UIColor *errorColor;
@end
NS_ASSUME_NONNULL_END