Class: Google::Apis::HealthcareV1::IngestMessageResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IngestMessageResponse

Returns a new instance of IngestMessageResponse.



2695
2696
2697
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2695

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#hl7_ackString

HL7v2 ACK message. Corresponds to the JSON property hl7Ack NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


2687
2688
2689
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2687

def hl7_ack
  @hl7_ack
end

#messageGoogle::Apis::HealthcareV1::Message

A complete HL7v2 message. See Introduction to HL7 Standards for details on the standard. Corresponds to the JSON property message



2693
2694
2695
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2693

def message
  @message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2700
2701
2702
2703
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2700

def update!(**args)
  @hl7_ack = args[:hl7_ack] if args.key?(:hl7_ack)
  @message = args[:message] if args.key?(:message)
end