Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryOsCrashEvent

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

Overview

OS crash data.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryOsCrashEvent

Returns a new instance of GoogleChromeManagementV1TelemetryOsCrashEvent.



4030
4031
4032
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4030

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

Instance Attribute Details

#crash_idString

Crash id. Corresponds to the JSON property crashId

Returns:

  • (String)


4018
4019
4020
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4018

def crash_id
  @crash_id
end

#crash_typeString

Crash type. Corresponds to the JSON property crashType

Returns:

  • (String)


4023
4024
4025
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4023

def crash_type
  @crash_type
end

#session_typeString

Session type. Corresponds to the JSON property sessionType

Returns:

  • (String)


4028
4029
4030
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4028

def session_type
  @session_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4035
4036
4037
4038
4039
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4035

def update!(**args)
  @crash_id = args[:crash_id] if args.key?(:crash_id)
  @crash_type = args[:crash_type] if args.key?(:crash_type)
  @session_type = args[:session_type] if args.key?(:session_type)
end