Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryOsCrashEvent
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryOsCrashEvent
- 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
-
#crash_id ⇒ String
Crash id.
-
#crash_type ⇒ String
Crash type.
-
#session_type ⇒ String
Session type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryOsCrashEvent
constructor
A new instance of GoogleChromeManagementV1TelemetryOsCrashEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_id ⇒ String
Crash id.
Corresponds to the JSON property crashId
4018 4019 4020 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4018 def crash_id @crash_id end |
#crash_type ⇒ String
Crash type.
Corresponds to the JSON property crashType
4023 4024 4025 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4023 def crash_type @crash_type end |
#session_type ⇒ String
Session type.
Corresponds to the JSON property sessionType
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 |