package models /* import ( "time" ) type InterpreterAttempt struct { InterpreterConversationId string `gorm:"primaryKey;index"` InterpreterResponseTime time.Time InterpreterAccepted bool InterpreterId int `gorm:"index"` CallType string CallConnected string ClientConversationId string `gorm:"index"` LanguageId int InterpreterPhone string ConversationStart time.Time ConversationEnd time.Time } func (InterpreterAttempt) TableName() string { return "gc_interpreter_attempts" } */