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.



328
329
330
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 328

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)


321
322
323
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 321

def message
  @message
end

#stack_traceString

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

Returns:

  • (String)


326
327
328
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 326

def stack_trace
  @stack_trace
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



333
334
335
336
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 333

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