Officially documented release
This commit is contained in:
@@ -2,6 +2,15 @@ package models
|
||||
|
||||
import "time"
|
||||
|
||||
// CrmLanguageLookup is a model that stores Language Lookup 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 CrmLanguageLookup struct {
|
||||
ID string `gorm:"primaryKey;column:id" json:"id"`
|
||||
Language *string `gorm:"column:language" json:"language"`
|
||||
|
||||
Reference in New Issue
Block a user