Class: Google::Apis::HealthcareV1::ListConsentsResponse

Inherits:
Object
  • Object
show all
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
more...

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListConsentsResponse

Returns a new instance of ListConsentsResponse.

[View source]

3988
3989
3990
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3988

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

Instance Attribute Details

#consentsArray<Google::Apis::HealthcareV1::Consent>

The returned Consents. The maximum number of Consents returned is determined by the value of page_size in the ListConsentsRequest. Corresponds to the JSON property consents


3980
3981
3982
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3980

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)

3986
3987
3988
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3986

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

3993
3994
3995
3996
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3993

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