minor changes

This commit is contained in:
pb 2024-04-04 16:44:46 +02:00
parent cba7b39216
commit a07c7f2898

View File

@ -22,6 +22,14 @@ type DataNEWModel struct {
Location string `json:"location" required:"true" validate:"required"`
}
type DataIO struct {
Counter uint `description:"Incremental number starting from 0"`
}
type DataObject struct {
ReferenceID primitive.ObjectID `json:"referenceID" description:"Data model ID"`
}
type DataModel struct {
ID string `json:"ID" bson:"_id" required:"true" validate:"required"`
DataNEWModel `bson:",inline"`
@ -34,15 +42,6 @@ func (obj DataModel) getRtype() rtype.Rtype {
func (model DataModel) getName() string {
return model.Name
}
type DataIO struct {
Counter uint `description:"Incremental number starting from 0"`
}
type DataObject struct {
ReferenceID primitive.ObjectID `json:"referenceID" description:"Data model ID"`
}
func (obj DataObject) getHost() *string {
return nil // Host is DC only attribute
}