Officially documented release
This commit is contained in:
@@ -4,6 +4,15 @@ import (
|
||||
"time"
|
||||
)
|
||||
|
||||
// CrmInterpreter is a model that stores Interpreter records from CRM.
|
||||
//
|
||||
// - The intention of the model is to map JSON -> struct -> JSON
|
||||
// - To improve usability, GORM 'column' tags have been used to map CRM API names into more descriptive names.
|
||||
//
|
||||
// Table Schema:
|
||||
//
|
||||
// Primary Key: ID
|
||||
// Indexes: ID
|
||||
type CrmInterpreter struct {
|
||||
ID int `gorm:"primaryKey;column:id" json:"id"`
|
||||
ABN *string `gorm:"column:abn" json:"abn"`
|
||||
|
||||
Reference in New Issue
Block a user