package orm import "time" type Document struct { Created time.Time `json:"createdAt" tstype:"Date"` Modified time.Time `json:"modifiedAt" tstype:"Date"` } type SaveOptions struct { SetTimestamps bool }