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.
3960 3961 3962 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3960 def initialize(**args) update!(**args) end |
Instance Attribute Details
#crash_id ⇒ String
Crash id.
Corresponds to the JSON property crashId
3948 3949 3950 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3948 def crash_id @crash_id end |
#crash_type ⇒ String
Crash type.
Corresponds to the JSON property crashType
3953 3954 3955 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3953 def crash_type @crash_type end |
#session_type ⇒ String
Session type.
Corresponds to the JSON property sessionType
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 |