Class: Google::Apis::HealthcareV1alpha2::ListAnnotationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1alpha2::ListAnnotationsResponse
- 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 Annotations in the specified Annotation store.
Instance Attribute Summary collapse
-
#annotations ⇒ Array<String>
The returned Annotations names.
-
#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) ⇒ ListAnnotationsResponse
constructor
A new instance of ListAnnotationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListAnnotationsResponse
Returns a new instance of ListAnnotationsResponse
1782 1783 1784 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1782 def initialize(**args) update!(**args) end |
Instance Attribute Details
#annotations ⇒ Array<String>
The returned Annotations names. Won't be more values than the value of
page_size in the request.
Corresponds to the JSON property annotations
1774 1775 1776 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1774 def annotations @annotations 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
1780 1781 1782 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1780 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1787 1788 1789 1790 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 1787 def update!(**args) @annotations = args[:annotations] if args.key?(:annotations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |