-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathgen_source.go
More file actions
78 lines (62 loc) · 2.24 KB
/
gen_source.go
File metadata and controls
78 lines (62 loc) · 2.24 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
// Code generated by cloud-observability; DO NOT EDIT.
package sipcallobs
type CallTrunkType string
const (
CallTrunkTypeUndefined CallTrunkType = ""
CallTrunkTypeInternal CallTrunkType = "internal"
CallTrunkTypeExternal CallTrunkType = "external"
)
type CallNumberType string
const (
CallNumberTypeUndefined CallNumberType = ""
CallNumberTypeTollFree CallNumberType = "toll_free"
CallNumberTypeRegular CallNumberType = "regular"
)
type CallDirection string
const (
CallDirectionUndefined CallDirection = ""
CallDirectionUnknown CallDirection = "unknown"
CallDirectionInbound CallDirection = "inbound"
CallDirectionOutbound CallDirection = "outbound"
)
type CallTransport string
const (
CallTransportUndefined CallTransport = ""
CallTransportUDP CallTransport = "udp"
CallTransportTCP CallTransport = "tcp"
CallTransportTLS CallTransport = "tls"
)
type CallStatus string
const (
CallStatusUndefined CallStatus = ""
CallStatusActive CallStatus = "active"
CallStatusCallIncoming CallStatus = "call_incoming"
CallStatusParticipantJoined CallStatus = "participant_joined"
CallStatusDisconnected CallStatus = "disconnected"
CallStatusError CallStatus = "error"
CallStatusPending CallStatus = "pending"
CallStatusSuccess CallStatus = "success"
CallStatusFailed CallStatus = "failed"
)
type CallTransferStatus string
const (
CallTransferStatusUndefined CallTransferStatus = ""
CallTransferStatusOngoing CallTransferStatus = "ongoing"
CallTransferStatusSuccess CallTransferStatus = "success"
CallTransferStatusFailed CallTransferStatus = "failed"
)
type CallMediaEncryptionSettings string
const (
CallMediaEncryptionSettingsUndefined CallMediaEncryptionSettings = ""
CallMediaEncryptionSettingsDisable CallMediaEncryptionSettings = "disable"
CallMediaEncryptionSettingsAllow CallMediaEncryptionSettings = "allow"
CallMediaEncryptionSettingsRequire CallMediaEncryptionSettings = "require"
)
type Rollup string
const (
RollupUndefined Rollup = ""
RollupProject Rollup = "project"
RollupCallIndex Rollup = "call_index"
RollupStartTimeIndex Rollup = "start_time_index"
RollupEndTimeIndex Rollup = "end_time_index"
)