Class: Google::Apis::HealthcareV1alpha2::ListHl7V2StoresResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/healthcare_v1alpha2/classes.rb,
generated/google/apis/healthcare_v1alpha2/representations.rb,
generated/google/apis/healthcare_v1alpha2/representations.rb

Overview

Lists the HL7v2 stores in the given dataset.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListHl7V2StoresResponse

Returns a new instance of ListHl7V2StoresResponse



1889
1890
1891
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1889

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

Instance Attribute Details

#hl7_v2_storesArray<Google::Apis::HealthcareV1alpha2::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



1881
1882
1883
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1881

def hl7_v2_stores
  @hl7_v2_stores
end

#next_page_tokenString

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

Returns:

  • (String)


1887
1888
1889
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1887

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1894
1895
1896
1897
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1894

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