Class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAppCrash

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/firebaseappdistribution_v1alpha/classes.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb

Overview

An app crash that occurred during an automated test.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaAppCrash

Returns a new instance of GoogleFirebaseAppdistroV1alphaAppCrash.



253
254
255
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 253

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

Instance Attribute Details

#messageString

Output only. The message associated with the crash. Corresponds to the JSON property message

Returns:

  • (String)


246
247
248
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 246

def message
  @message
end

#stack_traceString

Output only. The raw stack trace. Corresponds to the JSON property stackTrace

Returns:

  • (String)


251
252
253
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 251

def stack_trace
  @stack_trace
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



258
259
260
261
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 258

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