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.



379
380
381
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 379

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)


372
373
374
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 372

def message
  @message
end

#stack_traceString

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

Returns:

  • (String)


377
378
379
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 377

def stack_trace
  @stack_trace
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



384
385
386
387
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 384

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