Class: Google::Apis::FirebasedataconnectV1beta::ExecuteMutationResponse

Inherits:
Object
  • Object
show all
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 Data Connect.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExecuteMutationResponse

Returns a new instance of ExecuteMutationResponse.



214
215
216
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 214

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dataHash<String,Object>

The result of executing the requested operation. Corresponds to the JSON property data

Returns:

  • (Hash<String,Object>)


207
208
209
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 207

def data
  @data
end

#errorsArray<Google::Apis::FirebasedataconnectV1beta::GraphqlError>

Errors of this response. Corresponds to the JSON property errors



212
213
214
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 212

def errors
  @errors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



219
220
221
222
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 219

def update!(**args)
  @data = args[:data] if args.key?(:data)
  @errors = args[:errors] if args.key?(:errors)
end