Sha256: a4895f63aefade2f7fd86d9b3f1f0416636ce67fc75000998f4e5c80b7417398
Contents?: true
Size: 596 Bytes
Versions: 1
Compression:
Stored size: 596 Bytes
Contents
module QDM # app/models/qdm/communication_from_provider_to_provider.rb class CommunicationFromProviderToProvider < DataElement include Mongoid::Document embedded_in :patient field :authorDatetime, type: DateTime embeds_many :relatedTo, class_name: 'QDM::Id' field :negationRationale, type: QDM::Code field :hqmfOid, type: String, default: '2.16.840.1.113883.10.20.28.3.10' field :category, type: String, default: 'communication' field :qdmStatus, type: String, default: 'from_provider_to_provider' field :qdmVersion, type: String, default: '5.3' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cqm-models-0.8.4 | app/models/qdm/communication_from_provider_to_provider.rb |