update reference model datatype (include identifier model)

This commit is contained in:
Jason Kulatunga 2023-10-04 17:50:48 -07:00
parent 1435bbf53a
commit d09d4adb48
No known key found for this signature in database
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,8 @@
import {CodableConceptModel} from './codable-concept-model';
export interface IdentifierModel {
use: string
type?: CodableConceptModel
system?: string
value?: string
}

View File

@ -1,4 +1,7 @@
import {IdentifierModel} from './identifier-model';
export interface ReferenceModel {
reference: string
display?: string
identifier?: IdentifierModel
}