fasten-onprem/backend/pkg/models/resource_fhir.go

18 lines
260 B
Go

package models
import (
"gorm.io/datatypes"
)
type ResourceFhir struct {
OriginBase
//embedded data
Payload datatypes.JSON `json:"payload" gorm:"payload"`
}
type ListResourceQueryOptions struct {
SourceID string
SourceResourceType string
}