lib/types/ratingengine.go

20 lines
506 B
Go
Raw Normal View History

2021-01-10 18:40:46 +00:00
package types
import "github.com/go-sql-driver/mysql"
// Ratingengine is a first class object type
type Ratingengine struct {
Account string
Backend string
Createdbyid string
Createddate mysql.NullTime
Description string
ID string
Ingestmethod string
Isdefault int64
Lastmodifiedbyid string
Lastmodifieddate mysql.NullTime
Name string
Ratingengineitemcount float64
}