Class: Google::Apis::HealthcareV1::IngestMessageResponse
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::IngestMessageResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1/classes.rb,
lib/google/apis/healthcare_v1/representations.rb,
lib/google/apis/healthcare_v1/representations.rb
Overview
Acknowledges that a message has been ingested into the specified HL7v2 store.
Instance Attribute Summary collapse
-
#hl7_ack ⇒ String
HL7v2 ACK message.
-
#message ⇒ Google::Apis::HealthcareV1::Message
A complete HL7v2 message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IngestMessageResponse
constructor
A new instance of IngestMessageResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IngestMessageResponse
Returns a new instance of IngestMessageResponse.
3044 3045 3046 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3044 def initialize(**args) update!(**args) end |
Instance Attribute Details
#hl7_ack ⇒ String
HL7v2 ACK message.
Corresponds to the JSON property hl7Ack
NOTE: Values are automatically base64 encoded/decoded in the client library.
3036 3037 3038 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3036 def hl7_ack @hl7_ack end |
#message ⇒ Google::Apis::HealthcareV1::Message
A complete HL7v2 message. See Introduction to HL7 Standards for details on the standard.
Corresponds to the JSON property message
3042 3043 3044 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3042 def @message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3049 3050 3051 3052 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3049 def update!(**args) @hl7_ack = args[:hl7_ack] if args.key?(:hl7_ack) @message = args[:message] if args.key?(:message) end |