* Changing telephony observability names for consistency * Remove old observability interfaces.
45 lines
1.2 KiB
Go
Generated
45 lines
1.2 KiB
Go
Generated
// Code generated; DO NOT EDIT.
|
|
package corecallobs
|
|
|
|
type CallDirection string
|
|
|
|
const (
|
|
CallDirectionUndefined CallDirection = ""
|
|
CallDirectionUnknown CallDirection = "unknown"
|
|
CallDirectionInbound CallDirection = "inbound"
|
|
CallDirectionOutbound CallDirection = "outbound"
|
|
)
|
|
|
|
type CallCallType string
|
|
|
|
const (
|
|
CallCallTypeUndefined CallCallType = ""
|
|
CallCallTypeSIP CallCallType = "sip"
|
|
CallCallTypeTwilio CallCallType = "twilio"
|
|
CallCallTypeWhatsapp CallCallType = "whatsapp"
|
|
)
|
|
|
|
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 Rollup string
|
|
|
|
const (
|
|
RollupUndefined Rollup = ""
|
|
RollupProject Rollup = "project"
|
|
RollupCallIndex Rollup = "call_index"
|
|
RollupStartTimeIndex Rollup = "start_time_index"
|
|
RollupEndTimeIndex Rollup = "end_time_index"
|
|
)
|