Files
protocol/observability/telephonyobs/gen_source.go
shishirng d82d669007 update telephony (#1276)
Signed-off-by: shishir gowda <shishir@livekit.io>
2025-10-28 20:04:23 -04:00

45 lines
923 B
Go
Generated

// Code generated; DO NOT EDIT.
package telephonyobs
type DirectionType string
const (
DirectionTypeUndefined DirectionType = ""
DirectionTypeInbound DirectionType = "inbound"
DirectionTypeOutbound DirectionType = "outbound"
)
type NumberType string
const (
NumberTypeUndefined NumberType = ""
NumberTypeTollFree NumberType = "toll_free"
NumberTypeRegular NumberType = "regular"
)
type CallStatus string
const (
CallStatusUndefined CallStatus = ""
CallStatusAnswered CallStatus = "answered"
CallStatusMissed CallStatus = "missed"
CallStatusBusy CallStatus = "busy"
CallStatusFailed CallStatus = "failed"
)
type TrunkType string
const (
TrunkTypeUndefined TrunkType = ""
TrunkTypeInternal TrunkType = "internal"
TrunkTypeExternal TrunkType = "external"
)
type Rollup string
const (
RollupUndefined Rollup = ""
RollupPhone Rollup = "phone"
RollupCall Rollup = "call"
)