Files
gorm_models/models/raw.go

29 lines
822 B
Go
Raw Normal View History

2025-06-16 17:58:13 +10:00
package models
import "time"
2025-06-16 17:58:13 +10:00
2025-11-10 10:10:46 +11:00
// 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
2025-06-16 17:58:13 +10:00
}
func (GCRaw) TableName() string {
return "gc_raw"
2025-06-16 17:58:13 +10:00
}