Class: Google::Apis::HealthcareV1::ListConsentArtifactsResponse
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::ListConsentArtifactsResponse
- 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
-
#consent_artifacts ⇒ Array<Google::Apis::HealthcareV1::ConsentArtifact>
The returned Consent artifacts.
-
#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) ⇒ ListConsentArtifactsResponse
constructor
A new instance of ListConsentArtifactsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListConsentArtifactsResponse
Returns a new instance of ListConsentArtifactsResponse.
3153 3154 3155 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3153 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consent_artifacts ⇒ Array<Google::Apis::HealthcareV1::ConsentArtifact>
The returned Consent artifacts. The maximum number of artifacts returned is
determined by the value of page_size in the ListConsentArtifactsRequest.
Corresponds to the JSON property consentArtifacts
3145 3146 3147 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3145 def @consent_artifacts 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
3151 3152 3153 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3151 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3158 3159 3160 3161 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3158 def update!(**args) @consent_artifacts = args[:consent_artifacts] if args.key?(:consent_artifacts) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |