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.



303
304
305
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 303

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)


296
297
298
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 296

def message
  @message
end

#stack_traceString

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

Returns:

  • (String)


301
302
303
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 301

def stack_trace
  @stack_trace
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



308
309
310
311
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 308

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