Class: Google::Apis::HealthcareV1::ListConsentRevisionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::ListConsentRevisionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1/classes.rb,
lib/google/apis/healthcare_v1/representations.rb,
lib/google/apis/healthcare_v1/representations.rb
Instance Attribute Summary collapse
-
#consents ⇒ Array<Google::Apis::HealthcareV1::Consent>
The returned Consent revisions.
-
#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) ⇒ ListConsentRevisionsResponse
constructor
A new instance of ListConsentRevisionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListConsentRevisionsResponse
Returns a new instance of ListConsentRevisionsResponse.
3180 3181 3182 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3180 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consents ⇒ Array<Google::Apis::HealthcareV1::Consent>
The returned Consent revisions. The maximum number of revisions returned is
determined by the value of page_size
in the ListConsentRevisionsRequest.
Corresponds to the JSON property consents
3172 3173 3174 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3172 def @consents 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
3178 3179 3180 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3178 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3185 3186 3187 3188 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3185 def update!(**args) @consents = args[:consents] if args.key?(:consents) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |