Class: Google::Apis::HealthcareV1beta1::ListAttributeDefinitionsResponse

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 Attribute definitions in the given Consent store.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListAttributeDefinitionsResponse

Returns a new instance of ListAttributeDefinitionsResponse.



3501
3502
3503
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 3501

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

Instance Attribute Details

#attribute_definitionsArray<Google::Apis::HealthcareV1beta1::AttributeDefinition>

The returned attribute definitions. The maximum number of attributes returned is determined by the value of page_size in the ListAttributeDefinitionsRequest. Corresponds to the JSON property attributeDefinitions



3493
3494
3495
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 3493

def attribute_definitions
  @attribute_definitions
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)


3499
3500
3501
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 3499

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3506
3507
3508
3509
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 3506

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