-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcall_transcription_state.go
42 lines (39 loc) · 1.3 KB
/
call_transcription_state.go
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
// Code generated by Microsoft Kiota - DO NOT EDIT.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
package models
type CallTranscriptionState int
const (
NOTSTARTED_CALLTRANSCRIPTIONSTATE CallTranscriptionState = iota
ACTIVE_CALLTRANSCRIPTIONSTATE
INACTIVE_CALLTRANSCRIPTIONSTATE
UNKNOWNFUTUREVALUE_CALLTRANSCRIPTIONSTATE
)
func (i CallTranscriptionState) String() string {
return []string{"notStarted", "active", "inactive", "unknownFutureValue"}[i]
}
func ParseCallTranscriptionState(v string) (any, error) {
result := NOTSTARTED_CALLTRANSCRIPTIONSTATE
switch v {
case "notStarted":
result = NOTSTARTED_CALLTRANSCRIPTIONSTATE
case "active":
result = ACTIVE_CALLTRANSCRIPTIONSTATE
case "inactive":
result = INACTIVE_CALLTRANSCRIPTIONSTATE
case "unknownFutureValue":
result = UNKNOWNFUTUREVALUE_CALLTRANSCRIPTIONSTATE
default:
return nil, nil
}
return &result, nil
}
func SerializeCallTranscriptionState(values []CallTranscriptionState) []string {
result := make([]string, len(values))
for i, v := range values {
result[i] = v.String()
}
return result
}
func (i CallTranscriptionState) isMultiValue() bool {
return false
}