Class: Google::Apis::HealthcareV1beta1::ListAnnotationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::ListAnnotationsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1beta1/classes.rb,
lib/google/apis/healthcare_v1beta1/representations.rb,
lib/google/apis/healthcare_v1beta1/representations.rb
Overview
Lists the Annotations in the specified Annotation store.
Instance Attribute Summary collapse
-
#annotations ⇒ Array<Google::Apis::HealthcareV1beta1::Annotation>
The returned Annotations.
-
#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.
Constructor Details
#initialize(**args) ⇒ ListAnnotationsResponse
Returns a new instance of ListAnnotationsResponse.
5086 5087 5088 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 5086 def initialize(**args) update!(**args) end |
Instance Attribute Details
#annotations ⇒ Array<Google::Apis::HealthcareV1beta1::Annotation>
The returned Annotations. Won't be more values than the value of page_size in
the request. See AnnotationView
in the request for populated fields.
Corresponds to the JSON property annotations
5078 5079 5080 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 5078 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
5084 5085 5086 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 5084 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5091 5092 5093 5094 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 5091 def update!(**args) @annotations = args[:annotations] if args.key?(:annotations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |