Class: Google::Apis::HealthcareV1beta1::ListAnnotationStoresResponse
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::ListAnnotationStoresResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/healthcare_v1beta1/classes.rb,
generated/google/apis/healthcare_v1beta1/representations.rb,
generated/google/apis/healthcare_v1beta1/representations.rb
Overview
Lists the Annotation stores in the given dataset.
Instance Attribute Summary collapse
-
#annotation_stores ⇒ Array<Google::Apis::HealthcareV1beta1::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.
Constructor Details
#initialize(**args) ⇒ ListAnnotationStoresResponse
Returns a new instance of ListAnnotationStoresResponse.
3447 3448 3449 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 3447 def initialize(**args) update!(**args) end |
Instance Attribute Details
#annotation_stores ⇒ Array<Google::Apis::HealthcareV1beta1::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
3439 3440 3441 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 3439 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
3445 3446 3447 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 3445 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3452 3453 3454 3455 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 3452 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 |