Class: Google::Apis::HealthcareV1::ListHl7V2StoresResponse
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::ListHl7V2StoresResponse
- 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
Lists the HL7v2 stores in the given dataset.
Instance Attribute Summary collapse
-
#hl7_v2_stores ⇒ Array<Google::Apis::HealthcareV1::Hl7V2Store>
The returned HL7v2 stores.
-
#next_page_token ⇒ String
Token to retrieve the next page of results or empty if there are no more results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListHl7V2StoresResponse
constructor
A new instance of ListHl7V2StoresResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListHl7V2StoresResponse
Returns a new instance of ListHl7V2StoresResponse.
3341 3342 3343 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3341 def initialize(**args) update!(**args) end |
Instance Attribute Details
#hl7_v2_stores ⇒ Array<Google::Apis::HealthcareV1::Hl7V2Store>
The returned HL7v2 stores. Won't be more HL7v2 stores than the value of
page_size in the request.
Corresponds to the JSON property hl7V2Stores
3333 3334 3335 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3333 def hl7_v2_stores @hl7_v2_stores end |
#next_page_token ⇒ String
Token to retrieve the next page of results or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
3339 3340 3341 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3339 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3346 3347 3348 3349 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3346 def update!(**args) @hl7_v2_stores = args[:hl7_v2_stores] if args.key?(:hl7_v2_stores) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |