Class: Google::Apis::HealthcareV1beta1::Message
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::Message
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/healthcare_v1beta1/classes.rb,
generated/google/apis/healthcare_v1beta1/representations.rb,
generated/google/apis/healthcare_v1beta1/representations.rb
Overview
A complete HL7v2 message. See http://www.hl7.org/implement/standards/index.cfm?ref=common for details on the standard.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#data ⇒ String
Raw message bytes.
-
#labels ⇒ Hash<String,String>
User-supplied key-value pairs used to organize HL7v2 stores.
-
#message_type ⇒ String
The message type and trigger event for this message.
-
#name ⇒ String
Resource name of the Message, of the form
projects/
project_id/datasets/
dataset_id/hl7V2Stores/
hl7_v2_store_id/ messages/
message_id``. -
#parsed_data ⇒ Google::Apis::HealthcareV1beta1::ParsedData
The content of a HL7v2 message in a structured format.
-
#patient_ids ⇒ Array<Google::Apis::HealthcareV1beta1::PatientId>
All patient IDs listed in the PID-2, PID-3, and PID-4 segments of this message.
-
#send_facility ⇒ String
The hospital that this message came from.
-
#send_time ⇒ String
The datetime the sending application sent this message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Message
constructor
A new instance of Message.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Message
Returns a new instance of Message
1716 1717 1718 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1716 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The datetime when the message was created. Set by the server.
Corresponds to the JSON property createTime
1661 1662 1663 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1661 def create_time @create_time end |
#data ⇒ String
Raw message bytes.
Corresponds to the JSON property data
NOTE: Values are automatically base64 encoded/decoded in the client library.
1667 1668 1669 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1667 def data @data end |
#labels ⇒ Hash<String,String>
User-supplied key-value pairs used to organize HL7v2 stores.
Label keys must be between 1 and 63 characters long, have a UTF-8 encoding
of maximum 128 bytes, and must conform to the
following PCRE regular expression:
\pLl
\pLo
0,62
Label values are optional, must be between 1 and 63 characters long, have
a UTF-8 encoding of maximum 128 bytes, and must conform to the
following PCRE regular expression: [\pLl
\pLo
\pN
_-]0,63
No more than 64 labels can be associated with a given store.
Corresponds to the JSON property labels
1680 1681 1682 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1680 def labels @labels end |
#message_type ⇒ String
The message type and trigger event for this message. MSH-9.
Corresponds to the JSON property messageType
1685 1686 1687 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1685 def @message_type end |
#name ⇒ String
Resource name of the Message, of the form
projects/
project_id/datasets/
dataset_id/hl7V2Stores/
hl7_v2_store_id/
messages/
message_id`.
Assigned by the server.
Corresponds to the JSON property
name`
1693 1694 1695 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1693 def name @name end |
#parsed_data ⇒ Google::Apis::HealthcareV1beta1::ParsedData
The content of a HL7v2 message in a structured format.
Corresponds to the JSON property parsedData
1698 1699 1700 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1698 def parsed_data @parsed_data end |
#patient_ids ⇒ Array<Google::Apis::HealthcareV1beta1::PatientId>
All patient IDs listed in the PID-2, PID-3, and PID-4 segments of this
message.
Corresponds to the JSON property patientIds
1704 1705 1706 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1704 def patient_ids @patient_ids end |
#send_facility ⇒ String
The hospital that this message came from. MSH-4.
Corresponds to the JSON property sendFacility
1709 1710 1711 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1709 def send_facility @send_facility end |
#send_time ⇒ String
The datetime the sending application sent this message. MSH-7.
Corresponds to the JSON property sendTime
1714 1715 1716 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1714 def send_time @send_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1721 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @data = args[:data] if args.key?(:data) @labels = args[:labels] if args.key?(:labels) @message_type = args[:message_type] if args.key?(:message_type) @name = args[:name] if args.key?(:name) @parsed_data = args[:parsed_data] if args.key?(:parsed_data) @patient_ids = args[:patient_ids] if args.key?(:patient_ids) @send_facility = args[:send_facility] if args.key?(:send_facility) @send_time = args[:send_time] if args.key?(:send_time) end |