28 lines
745 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
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
}