type Object struct {
UpdatedAt time.Time
}
type MyObject struct {
Object
UpdatedAt time.Time `json:"-"`
Price int
}
myOb = MyObject{}
myOb.UpdatedAt = time.Now()
myOb.Price = 100
json.Marshal(myOb)
{
"UpdatedAt" : "0001-01-01T00:00:00Z",
"Price": 100
}