package model import "time" type UserData struct { UserEditable ID string `json:"id"` CreatedAt time.Time `json:"createdAt"` UpdatedAt *time.Time `json:"updatedAt"` } type UserDataEditable struct { UserID string `json:'userID'` Type string `json:"type"` Name string `json:"name"` Content string `json:"content"` }