28 lines
745 B
Go
28 lines
745 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
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"
|
|
}
|