Class: Google::Apis::HealthcareV1beta1::ListConsentRevisionsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/healthcare_v1beta1/classes.rb,
generated/google/apis/healthcare_v1beta1/representations.rb,
generated/google/apis/healthcare_v1beta1/representations.rb

Overview

Lists the revisions of the given Consent in reverse chronological order.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListConsentRevisionsResponse

Returns a new instance of ListConsentRevisionsResponse.



3555
3556
3557
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 3555

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#consentsArray<Google::Apis::HealthcareV1beta1::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



3547
3548
3549
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 3547

def consents
  @consents
end

#next_page_tokenString

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

Returns:

  • (String)


3553
3554
3555
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 3553

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3560
3561
3562
3563
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 3560

def update!(**args)
  @consents = args[:consents] if args.key?(:consents)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end