2022-12-02 20:40:58 -07:00
|
|
|
package models
|
|
|
|
|
|
|
|
type Summary struct {
|
|
|
|
Sources []SourceCredential `json:"sources"`
|
2023-07-08 08:43:30 -06:00
|
|
|
Patients []ResourceBase `json:"patients"`
|
2022-12-02 20:40:58 -07:00
|
|
|
ResourceTypeCounts []map[string]interface{} `json:"resource_type_counts"`
|
|
|
|
}
|