Class: Google::Apis::HealthcareV1::ListAttributeDefinitionsResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListAttributeDefinitionsResponse

Returns a new instance of ListAttributeDefinitionsResponse.



2902
2903
2904
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2902

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

Instance Attribute Details

#attribute_definitionsArray<Google::Apis::HealthcareV1::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



2894
2895
2896
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2894

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)


2900
2901
2902
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2900

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2907
2908
2909
2910
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2907

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