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.



4067
4068
4069
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4067

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

Instance Attribute Details

#crash_idString

Crash id. Corresponds to the JSON property crashId

Returns:

  • (String)


4055
4056
4057
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4055

def crash_id
  @crash_id
end

#crash_typeString

Crash type. Corresponds to the JSON property crashType

Returns:

  • (String)


4060
4061
4062
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4060

def crash_type
  @crash_type
end

#session_typeString

Session type. Corresponds to the JSON property sessionType

Returns:

  • (String)


4065
4066
4067
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4065

def session_type
  @session_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4072
4073
4074
4075
4076
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4072

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