Skip to content

Commit f603dbc

Browse files
committed
Change changelog line to reflect right sdk and update enum doc structure
1 parent f7e6476 commit f603dbc

22 files changed

+131
-22
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ None
1515

1616
### Changed
1717

18-
- Enums have been implemented in the csharp sdk
18+
- Enums have been implemented in the python sdk
1919
- Updated README for enum implementation and testing
2020

2121
<a name="4.0.6"></a>

docs/AccountStatus.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ The status of this account. It is one of: active, suspended, or closed.
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**value** | **str** | The status of this account. It is one of: active, suspended, or closed. | must be one of ["closed", "suspended", "active", ]
7+
| **CLOSED** | **AccountStatus** | | Represented in Python as "closed" |
8+
| **SUSPENDED** | **AccountStatus** | | Represented in Python as "suspended" |
9+
| **ACTIVE** | **AccountStatus** | | Represented in Python as "active" |
810

911
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1012

docs/AccountType.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ The type of this account. It is one of: trial or full.
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**value** | **str** | The type of this account. It is one of: trial or full. | must be one of ["trial", "full", ]
7+
| **TRIAL** | **AccountType** | | Represented in Python as "trial" |
8+
| **FULL** | **AccountType** | | Represented in Python as "full" |
89

910
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1011

docs/AnsweredBy.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ If this Call was initiated with answering machine detection, either `human` or `
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**value** | **str** | If this Call was initiated with answering machine detection, either &#x60;human&#x60; or &#x60;machine&#x60;. Empty otherwise. | must be one of ["human", "machine", ]
7+
| **HUMAN** | **AnsweredBy** | | Represented in Python as "human" |
8+
| **MACHINE** | **AnsweredBy** | | Represented in Python as "machine" |
89

910
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1011

docs/CallDirection.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ Direction of the Call. `inbound` for Calls into FreeClimb, `outboundAPI` for Cal
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**value** | **str** | Direction of the Call. &#x60;inbound&#x60; for Calls into FreeClimb, &#x60;outboundAPI&#x60; for Calls initiated via the REST API, &#x60;outboundDial&#x60; for Calls initiated by the &#x60;OutDial&#x60; PerCL command. | must be one of ["inbound", "outboundAPI", "outboundDial", ]
7+
| **INBOUND** | **CallDirection** | | Represented in Python as "inbound" |
8+
| **OUTBOUND_API** | **CallDirection** | | Represented in Python as "outboundAPI" |
9+
| **OUTBOUND_DIAL** | **CallDirection** | | Represented in Python as "outboundDial" |
810

911
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1012

docs/CallStatus.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**value** | **str** | * &#x60;queued&#x60; &amp;ndash; Call is ready and waiting in line before going out. * &#x60;ringing&#x60; &amp;ndash; Call is currently ringing. * &#x60;inProgress&#x60; &amp;ndash; Call was answered and is currently in progress. * &#x60;canceled&#x60; &amp;ndash; Call was hung up while it was queued or ringing. * &#x60;completed&#x60; &amp;ndash; Call was answered and has ended normally. * &#x60;busy&#x60; &amp;ndash; Caller received a busy signal. * &#x60;failed&#x60; &amp;ndash; Call could not be completed as dialed, most likely because the phone number was non-existent. * &#x60;noAnswer&#x60; &amp;ndash; Call ended without being answered. | must be one of ["queued", "ringing", "inProgress", "canceled", "completed", "failed", "busy", "noAnswer", ]
7+
| **QUEUED** | **CallStatus** | | Represented in Python as "queued" |
8+
| **RINGING** | **CallStatus** | | Represented in Python as "ringing" |
9+
| **IN_PROGRESS** | **CallStatus** | | Represented in Python as "inProgress" |
10+
| **CANCELED** | **CallStatus** | | Represented in Python as "canceled" |
11+
| **COMPLETED** | **CallStatus** | | Represented in Python as "completed" |
12+
| **FAILED** | **CallStatus** | | Represented in Python as "failed" |
13+
| **BUSY** | **CallStatus** | | Represented in Python as "busy" |
14+
| **NO_ANSWER** | **CallStatus** | | Represented in Python as "noAnswer" |
815

916
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1017

docs/ConferenceStatus.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ The status of the Conference. One of: creating, empty, populated, inProgress, or
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**value** | **str** | The status of the Conference. One of: creating, empty, populated, inProgress, or terminated. | must be one of ["empty", "populated", "inProgress", "terminated", ]
7+
| **EMPTY** | **ConferenceStatus** | | Represented in Python as "empty" |
8+
| **POPULATED** | **ConferenceStatus** | | Represented in Python as "populated" |
9+
| **IN_PROGRESS** | **ConferenceStatus** | | Represented in Python as "inProgress" |
10+
| **TERMINATED** | **ConferenceStatus** | | Represented in Python as "terminated" |
811

912
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1013

docs/GetSpeechReason.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**value** | **str** | | must be one of ["error", "hangup", "digit", "noInput", "noMatch", "recognition", ]
6+
| **ERROR** | **GetSpeechReason** | | Represented in Python as "error" |
7+
| **HANGUP** | **GetSpeechReason** | | Represented in Python as "hangup" |
8+
| **DIGIT** | **GetSpeechReason** | | Represented in Python as "digit" |
9+
| **NO_INPUT** | **GetSpeechReason** | | Represented in Python as "noInput" |
10+
| **NO_MATCH** | **GetSpeechReason** | | Represented in Python as "noMatch" |
11+
| **RECOGNITION** | **GetSpeechReason** | | Represented in Python as "recognition" |
712

813
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
914

docs/GrammarFileBuiltIn.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,21 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**value** | **str** | | must be one of ["ALPHNUM6", "ANY_DIG", "DIG1", "DIG2", "DIG3", "DIG4", "DIG5", "DIG6", "DIG7", "DIG8", "DIG9", "DIG10", "DIG11", "UP_TO_20_DIGIT_SEQUENCE", "VERSAY_YESNO", ]
6+
| **ALPHNUM6** | **GrammarFileBuiltIn** | | Represented in Python as "ALPHNUM6" |
7+
| **ANY_DIG** | **GrammarFileBuiltIn** | | Represented in Python as "ANY_DIG" |
8+
| **DIG1** | **GrammarFileBuiltIn** | | Represented in Python as "DIG1" |
9+
| **DIG2** | **GrammarFileBuiltIn** | | Represented in Python as "DIG2" |
10+
| **DIG3** | **GrammarFileBuiltIn** | | Represented in Python as "DIG3" |
11+
| **DIG4** | **GrammarFileBuiltIn** | | Represented in Python as "DIG4" |
12+
| **DIG5** | **GrammarFileBuiltIn** | | Represented in Python as "DIG5" |
13+
| **DIG6** | **GrammarFileBuiltIn** | | Represented in Python as "DIG6" |
14+
| **DIG7** | **GrammarFileBuiltIn** | | Represented in Python as "DIG7" |
15+
| **DIG8** | **GrammarFileBuiltIn** | | Represented in Python as "DIG8" |
16+
| **DIG9** | **GrammarFileBuiltIn** | | Represented in Python as "DIG9" |
17+
| **DIG10** | **GrammarFileBuiltIn** | | Represented in Python as "DIG10" |
18+
| **DIG11** | **GrammarFileBuiltIn** | | Represented in Python as "DIG11" |
19+
| **UP_TO_20_DIGIT_SEQUENCE** | **GrammarFileBuiltIn** | | Represented in Python as "UP_TO_20_DIGIT_SEQUENCE" |
20+
| **VERSAY_YESNO** | **GrammarFileBuiltIn** | | Represented in Python as "VERSAY_YESNO" |
721

822
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
923

docs/GrammarType.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ The grammar file type to use for speech recognition. A value of 'URL' indicates
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**value** | **str** | The grammar file type to use for speech recognition. A value of &#39;URL&#39; indicates the grammarFile attribute specifies a URL that points to the grammar file. A value of &#x60;BUILTIN&#x60; indicates the grammarFile attribute specifies the name of one of the platform built-in grammar files. | must be one of ["URL", "BUILTIN", ]
7+
| **URL** | **GrammarType** | | Represented in Python as "URL" |
8+
| **BUILT_IN** | **GrammarType** | | Represented in Python as "BUILTIN" |
89

910
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1011

0 commit comments

Comments
 (0)