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.



3960
3961
3962
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3960

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

Instance Attribute Details

#crash_idString

Crash id. Corresponds to the JSON property crashId

Returns:

  • (String)


3948
3949
3950
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3948

def crash_id
  @crash_id
end

#crash_typeString

Crash type. Corresponds to the JSON property crashType

Returns:

  • (String)


3953
3954
3955
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3953

def crash_type
  @crash_type
end

#session_typeString

Session type. Corresponds to the JSON property sessionType

Returns:

  • (String)


3958
3959
3960
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3958

def session_type
  @session_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3965
3966
3967
3968
3969
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3965

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