29 lines
822 B
Go
29 lines
822 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
// WARNING: This table is **deprecated** and is no longer used for anything.
|
|
type GCRaw struct {
|
|
ClientConversationId string
|
|
InterpreterConversationId string
|
|
LanguageId int
|
|
CallType string
|
|
GenderPreference string
|
|
ClientId int
|
|
CustomerDnis string
|
|
CustomerAni string
|
|
ClientConnectTimeUtc *time.Time
|
|
ClientDisconnectTimeUtc *time.Time
|
|
NesConnectTimeUtc *time.Time
|
|
NesDisconnectTimeUtc *time.Time
|
|
BookingReference *int
|
|
IvrData *int
|
|
InterpreterId int
|
|
InterpreterConnectTimeUtc time.Time
|
|
InterpreterDisconnectTimeUtc time.Time
|
|
}
|
|
|
|
func (GCRaw) TableName() string {
|
|
return "gc_raw"
|
|
}
|