Class: Google::Apis::ConnectorsV1::ListEntityTypesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::ListEntityTypesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
Response message for ListEntityTypes API
Instance Attribute Summary collapse
-
#entity_types ⇒ Array<Google::Apis::ConnectorsV1::RuntimeEntitySchema>
list of entity types Corresponds to the JSON property
entityTypes
. -
#next_page_token ⇒ String
token for next page Corresponds to the JSON property
nextPageToken
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListEntityTypesResponse
constructor
A new instance of ListEntityTypesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListEntityTypesResponse
Returns a new instance of ListEntityTypesResponse.
3636 3637 3638 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3636 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_types ⇒ Array<Google::Apis::ConnectorsV1::RuntimeEntitySchema>
list of entity types
Corresponds to the JSON property entityTypes
3629 3630 3631 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3629 def entity_types @entity_types end |
#next_page_token ⇒ String
token for next page
Corresponds to the JSON property nextPageToken
3634 3635 3636 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3634 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3641 3642 3643 3644 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3641 def update!(**args) @entity_types = args[:entity_types] if args.key?(:entity_types) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |