2022-09-08 22:14:03 -06:00
|
|
|
package models
|
|
|
|
|
2022-09-14 22:56:32 -06:00
|
|
|
import (
|
|
|
|
"gorm.io/datatypes"
|
|
|
|
)
|
2022-09-08 22:14:03 -06:00
|
|
|
|
|
|
|
type ResourceFhir struct {
|
|
|
|
OriginBase
|
|
|
|
|
|
|
|
//embedded data
|
|
|
|
Payload datatypes.JSON `json:"payload" gorm:"payload"`
|
|
|
|
}
|
2022-09-14 22:56:32 -06:00
|
|
|
|
|
|
|
type ListResourceQueryOptions struct {
|
|
|
|
SourceID string
|
|
|
|
SourceResourceType string
|
|
|
|
}
|