2022-12-02 20:40:58 -07:00
|
|
|
package models
|
|
|
|
|
|
|
|
type SourceSummary struct {
|
|
|
|
Source *SourceCredential `json:"source,omitempty"`
|
|
|
|
ResourceTypeCounts []map[string]interface{} `json:"resource_type_counts,omitempty"`
|
2023-07-08 08:43:30 -06:00
|
|
|
Patient *ResourceBase `json:"patient"`
|
2022-12-02 20:40:58 -07:00
|
|
|
}
|