20 lines
506 B
Go
20 lines
506 B
Go
|
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
|
||
|
}
|