Class: Google::Apis::HealthcareV1beta1::ListConsentStoresResponse
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::ListConsentStoresResponse
- 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
Instance Attribute Summary collapse
-
#consent_stores ⇒ Array<Google::Apis::HealthcareV1beta1::ConsentStore>
The returned consent 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) ⇒ ListConsentStoresResponse
constructor
A new instance of ListConsentStoresResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListConsentStoresResponse
Returns a new instance of ListConsentStoresResponse.
5194 5195 5196 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 5194 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consent_stores ⇒ Array<Google::Apis::HealthcareV1beta1::ConsentStore>
The returned consent stores. The maximum number of stores returned is
determined by the value of page_size in the ListConsentStoresRequest.
Corresponds to the JSON property consentStores
5186 5187 5188 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 5186 def @consent_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
5192 5193 5194 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 5192 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5199 5200 5201 5202 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 5199 def update!(**args) @consent_stores = args[:consent_stores] if args.key?(:consent_stores) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |