Class: Google::Apis::FirebasedataconnectV1::ExecuteQueryResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirebasedataconnectV1::ExecuteQueryResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebasedataconnect_v1/classes.rb,
lib/google/apis/firebasedataconnect_v1/representations.rb,
lib/google/apis/firebasedataconnect_v1/representations.rb
Overview
The ExecuteQuery response from Firebase Data Connect.
Instance Attribute Summary collapse
-
#data ⇒ Hash<String,Object>
The result of executing the requested operation.
-
#errors ⇒ Array<Google::Apis::FirebasedataconnectV1::GraphqlError>
Errors of this response.
-
#extensions ⇒ Google::Apis::FirebasedataconnectV1::GraphqlResponseExtensions
GraphqlResponseExtensions contains additional information of
GraphqlResponseorExecuteQueryResponse.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExecuteQueryResponse
constructor
A new instance of ExecuteQueryResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExecuteQueryResponse
Returns a new instance of ExecuteQueryResponse.
369 370 371 |
# File 'lib/google/apis/firebasedataconnect_v1/classes.rb', line 369 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data ⇒ Hash<String,Object>
The result of executing the requested operation.
Corresponds to the JSON property data
356 357 358 |
# File 'lib/google/apis/firebasedataconnect_v1/classes.rb', line 356 def data @data end |
#errors ⇒ Array<Google::Apis::FirebasedataconnectV1::GraphqlError>
Errors of this response.
Corresponds to the JSON property errors
361 362 363 |
# File 'lib/google/apis/firebasedataconnect_v1/classes.rb', line 361 def errors @errors end |
#extensions ⇒ Google::Apis::FirebasedataconnectV1::GraphqlResponseExtensions
GraphqlResponseExtensions contains additional information of GraphqlResponse
or ExecuteQueryResponse.
Corresponds to the JSON property extensions
367 368 369 |
# File 'lib/google/apis/firebasedataconnect_v1/classes.rb', line 367 def extensions @extensions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
374 375 376 377 378 |
# File 'lib/google/apis/firebasedataconnect_v1/classes.rb', line 374 def update!(**args) @data = args[:data] if args.key?(:data) @errors = args[:errors] if args.key?(:errors) @extensions = args[:extensions] if args.key?(:extensions) end |