lib/app/taxinstance.go

31 lines
653 B
Go

package app
import (
"database/sql"
"code.tnxs.net/taxnexus/lib/api/geo/geo_models"
)
// TaxInstanceChannelWrapper wraps the object with the security principal
type TaxInstanceChannelWrapper struct {
Obj geo_models.TaxInstance
Principal User
SagaID string
SagaType string
}
// TaxInstance is a first class object type
type TaxInstance struct {
ID string
CountryID string
CountyID string
CreatedByID string
CreatedDate sql.NullTime
LastModifiedByID string
LastModifiedDate sql.NullTime
PlaceID string
StateID string
TaxTypeID string
Type string
}