Class: Google::Apis::FirebasedataconnectV1beta::ExecuteMutationResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirebasedataconnectV1beta::ExecuteMutationResponse
- 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 ExecuteMutation response from Firebase SQL 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.
-
#extensions ⇒ Google::Apis::FirebasedataconnectV1beta::GraphqlResponseExtensions
GraphqlResponseExtensions contains additional information of
GraphqlResponseorExecuteQueryResponse.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExecuteMutationResponse
constructor
A new instance of ExecuteMutationResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExecuteMutationResponse
Returns a new instance of ExecuteMutationResponse.
336 337 338 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 336 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
323 324 325 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 323 def data @data end |
#errors ⇒ Array<Google::Apis::FirebasedataconnectV1beta::GraphqlError>
Errors of this response.
Corresponds to the JSON property errors
328 329 330 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 328 def errors @errors end |
#extensions ⇒ Google::Apis::FirebasedataconnectV1beta::GraphqlResponseExtensions
GraphqlResponseExtensions contains additional information of GraphqlResponse
or ExecuteQueryResponse.
Corresponds to the JSON property extensions
334 335 336 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 334 def extensions @extensions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
341 342 343 344 345 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 341 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 |