-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathFILES
More file actions
210 lines (210 loc) · 6.69 KB
/
FILES
File metadata and controls
210 lines (210 loc) · 6.69 KB
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
.gitlab-ci.yml
.travis.yml
README.md
bandwidth/__init__.py
bandwidth/api/__init__.py
bandwidth/api/calls_api.py
bandwidth/api/conferences_api.py
bandwidth/api/media_api.py
bandwidth/api/messages_api.py
bandwidth/api/mfa_api.py
bandwidth/api/phone_number_lookup_api.py
bandwidth/api/recordings_api.py
bandwidth/api/statistics_api.py
bandwidth/api/transcriptions_api.py
bandwidth/api_client.py
bandwidth/api_response.py
bandwidth/configuration.py
bandwidth/exceptions.py
bandwidth/models/__init__.py
bandwidth/models/account_statistics.py
bandwidth/models/answer_callback.py
bandwidth/models/bridge_complete_callback.py
bandwidth/models/bridge_target_complete_callback.py
bandwidth/models/call_direction_enum.py
bandwidth/models/call_recording_metadata.py
bandwidth/models/call_state.py
bandwidth/models/call_state_enum.py
bandwidth/models/call_transcription.py
bandwidth/models/call_transcription_detected_language_enum.py
bandwidth/models/call_transcription_metadata.py
bandwidth/models/call_transcription_response.py
bandwidth/models/call_transcription_track_enum.py
bandwidth/models/callback_method_enum.py
bandwidth/models/callback_type_enum.py
bandwidth/models/code_request.py
bandwidth/models/conference.py
bandwidth/models/conference_completed_callback.py
bandwidth/models/conference_created_callback.py
bandwidth/models/conference_member.py
bandwidth/models/conference_member_exit_callback.py
bandwidth/models/conference_member_join_callback.py
bandwidth/models/conference_recording_available_callback.py
bandwidth/models/conference_recording_metadata.py
bandwidth/models/conference_redirect_callback.py
bandwidth/models/conference_state_enum.py
bandwidth/models/create_call.py
bandwidth/models/create_call_response.py
bandwidth/models/create_lookup_response.py
bandwidth/models/create_message_request_error.py
bandwidth/models/deferred_result.py
bandwidth/models/disconnect_callback.py
bandwidth/models/diversion.py
bandwidth/models/dtmf_callback.py
bandwidth/models/field_error.py
bandwidth/models/file_format_enum.py
bandwidth/models/gather_callback.py
bandwidth/models/initiate_callback.py
bandwidth/models/list_message_direction_enum.py
bandwidth/models/list_message_item.py
bandwidth/models/lookup_request.py
bandwidth/models/lookup_result.py
bandwidth/models/lookup_status.py
bandwidth/models/lookup_status_enum.py
bandwidth/models/machine_detection_complete_callback.py
bandwidth/models/machine_detection_configuration.py
bandwidth/models/machine_detection_mode_enum.py
bandwidth/models/machine_detection_result.py
bandwidth/models/media.py
bandwidth/models/message.py
bandwidth/models/message_callback.py
bandwidth/models/message_callback_message.py
bandwidth/models/message_direction_enum.py
bandwidth/models/message_request.py
bandwidth/models/message_status_enum.py
bandwidth/models/message_type_enum.py
bandwidth/models/messages_list.py
bandwidth/models/messaging_code_response.py
bandwidth/models/messaging_request_error.py
bandwidth/models/mfa_forbidden_request_error.py
bandwidth/models/mfa_request_error.py
bandwidth/models/mfa_unauthorized_request_error.py
bandwidth/models/page_info.py
bandwidth/models/priority_enum.py
bandwidth/models/recording_available_callback.py
bandwidth/models/recording_complete_callback.py
bandwidth/models/recording_state_enum.py
bandwidth/models/recording_transcription_metadata.py
bandwidth/models/recording_transcriptions.py
bandwidth/models/redirect_callback.py
bandwidth/models/redirect_method_enum.py
bandwidth/models/stir_shaken.py
bandwidth/models/tag.py
bandwidth/models/tn_lookup_request_error.py
bandwidth/models/transcribe_recording.py
bandwidth/models/transcription.py
bandwidth/models/transcription_available_callback.py
bandwidth/models/transfer_answer_callback.py
bandwidth/models/transfer_complete_callback.py
bandwidth/models/transfer_disconnect_callback.py
bandwidth/models/update_call.py
bandwidth/models/update_call_recording.py
bandwidth/models/update_conference.py
bandwidth/models/update_conference_member.py
bandwidth/models/verify_code_request.py
bandwidth/models/verify_code_response.py
bandwidth/models/voice_api_error.py
bandwidth/models/voice_code_response.py
bandwidth/py.typed
bandwidth/rest.py
docs/AccountStatistics.md
docs/AnswerCallback.md
docs/BridgeCompleteCallback.md
docs/BridgeTargetCompleteCallback.md
docs/CallDirectionEnum.md
docs/CallRecordingMetadata.md
docs/CallState.md
docs/CallStateEnum.md
docs/CallTranscription.md
docs/CallTranscriptionDetectedLanguageEnum.md
docs/CallTranscriptionMetadata.md
docs/CallTranscriptionResponse.md
docs/CallTranscriptionTrackEnum.md
docs/CallbackMethodEnum.md
docs/CallbackTypeEnum.md
docs/CallsApi.md
docs/CodeRequest.md
docs/Conference.md
docs/ConferenceCompletedCallback.md
docs/ConferenceCreatedCallback.md
docs/ConferenceMember.md
docs/ConferenceMemberExitCallback.md
docs/ConferenceMemberJoinCallback.md
docs/ConferenceRecordingAvailableCallback.md
docs/ConferenceRecordingMetadata.md
docs/ConferenceRedirectCallback.md
docs/ConferenceStateEnum.md
docs/ConferencesApi.md
docs/CreateCall.md
docs/CreateCallResponse.md
docs/CreateLookupResponse.md
docs/CreateMessageRequestError.md
docs/DeferredResult.md
docs/DisconnectCallback.md
docs/Diversion.md
docs/DtmfCallback.md
docs/FieldError.md
docs/FileFormatEnum.md
docs/GatherCallback.md
docs/InitiateCallback.md
docs/ListMessageDirectionEnum.md
docs/ListMessageItem.md
docs/LookupRequest.md
docs/LookupResult.md
docs/LookupStatus.md
docs/LookupStatusEnum.md
docs/MFAApi.md
docs/MachineDetectionCompleteCallback.md
docs/MachineDetectionConfiguration.md
docs/MachineDetectionModeEnum.md
docs/MachineDetectionResult.md
docs/Media.md
docs/MediaApi.md
docs/Message.md
docs/MessageCallback.md
docs/MessageCallbackMessage.md
docs/MessageDirectionEnum.md
docs/MessageRequest.md
docs/MessageStatusEnum.md
docs/MessageTypeEnum.md
docs/MessagesApi.md
docs/MessagesList.md
docs/MessagingCodeResponse.md
docs/MessagingRequestError.md
docs/MfaForbiddenRequestError.md
docs/MfaRequestError.md
docs/MfaUnauthorizedRequestError.md
docs/PageInfo.md
docs/PhoneNumberLookupApi.md
docs/PriorityEnum.md
docs/RecordingAvailableCallback.md
docs/RecordingCompleteCallback.md
docs/RecordingStateEnum.md
docs/RecordingTranscriptionMetadata.md
docs/RecordingTranscriptions.md
docs/RecordingsApi.md
docs/RedirectCallback.md
docs/RedirectMethodEnum.md
docs/StatisticsApi.md
docs/StirShaken.md
docs/Tag.md
docs/TnLookupRequestError.md
docs/TranscribeRecording.md
docs/Transcription.md
docs/TranscriptionAvailableCallback.md
docs/TranscriptionsApi.md
docs/TransferAnswerCallback.md
docs/TransferCompleteCallback.md
docs/TransferDisconnectCallback.md
docs/UpdateCall.md
docs/UpdateCallRecording.md
docs/UpdateConference.md
docs/UpdateConferenceMember.md
docs/VerifyCodeRequest.md
docs/VerifyCodeResponse.md
docs/VoiceApiError.md
docs/VoiceCodeResponse.md
git_push.sh
pyproject.toml
setup.py
tox.ini