31 lines
760 B
Go
31 lines
760 B
Go
package app
|
|
|
|
import (
|
|
"code.tnxs.net/taxnexus/lib/api/regs/regs_models"
|
|
"github.com/go-sql-driver/mysql"
|
|
)
|
|
|
|
// RatingengineActivityWrapper wraps the object with workflow params
|
|
type RatingengineActivityWrapper struct {
|
|
Obj regs_models.RatingEngine
|
|
APIKey string
|
|
SagaID string
|
|
SagaType string
|
|
}
|
|
|
|
// 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
|
|
}
|