Class: Google::Apis::HealthcareV1alpha2::ListAnnotationStoresResponse
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1alpha2::ListAnnotationStoresResponse
- 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 Annotation stores in the given dataset.
Instance Attribute Summary collapse
-
#annotation_stores ⇒ Array<Google::Apis::HealthcareV1alpha2::AnnotationStore>
The returned Annotation 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) ⇒ ListAnnotationStoresResponse
constructor
A new instance of ListAnnotationStoresResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListAnnotationStoresResponse
Returns a new instance of ListAnnotationStoresResponse
1754 1755 1756 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1754 def initialize(**args) update!(**args) end |
Instance Attribute Details
#annotation_stores ⇒ Array<Google::Apis::HealthcareV1alpha2::AnnotationStore>
The returned Annotation stores. Won't be more Annotation stores than the
value of page_size in the request.
Corresponds to the JSON property annotationStores
1746 1747 1748 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1746 def annotation_stores @annotation_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
1752 1753 1754 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1752 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1759 1760 1761 1762 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1759 def update!(**args) @annotation_stores = args[:annotation_stores] if args.key?(:annotation_stores) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |