Class: Google::Apis::HealthcareV1beta1::ListAttributeDefinitionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::ListAttributeDefinitionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1beta1/classes.rb,
lib/google/apis/healthcare_v1beta1/representations.rb,
lib/google/apis/healthcare_v1beta1/representations.rb
Instance Attribute Summary collapse
-
#attribute_definitions ⇒ Array<Google::Apis::HealthcareV1beta1::AttributeDefinition>
The returned Attribute definitions.
-
#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) ⇒ ListAttributeDefinitionsResponse
constructor
A new instance of ListAttributeDefinitionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAttributeDefinitionsResponse
Returns a new instance of ListAttributeDefinitionsResponse.
5113 5114 5115 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 5113 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attribute_definitions ⇒ Array<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
5105 5106 5107 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 5105 def attribute_definitions @attribute_definitions 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
5111 5112 5113 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 5111 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5118 5119 5120 5121 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 5118 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 |