Class: Google::Apis::FirebasedataconnectV1beta::ExecuteQueryResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirebasedataconnectV1beta::ExecuteQueryResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebasedataconnect_v1beta/classes.rb,
lib/google/apis/firebasedataconnect_v1beta/representations.rb,
lib/google/apis/firebasedataconnect_v1beta/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::FirebasedataconnectV1beta::GraphqlError>
Errors of this response.
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.
266 267 268 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 266 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
259 260 261 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 259 def data @data end |
#errors ⇒ Array<Google::Apis::FirebasedataconnectV1beta::GraphqlError>
Errors of this response.
Corresponds to the JSON property errors
264 265 266 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 264 def errors @errors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
271 272 273 274 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 271 def update!(**args) @data = args[:data] if args.key?(:data) @errors = args[:errors] if args.key?(:errors) end |