Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeCrashEventsResponseCrashEventCount
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeCrashEventsResponseCrashEventCount
- 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
The count of the Chrome crash events at the date.
Instance Attribute Summary collapse
-
#browser_version ⇒ String
Browser version this is counting.
-
#count ⇒ Fixnum
Total count of crash events.
-
#date ⇒ Google::Apis::ChromemanagementV1::GoogleTypeDate
Represents a whole or partial calendar date, such as a birthday.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1CountChromeCrashEventsResponseCrashEventCount
constructor
A new instance of GoogleChromeManagementV1CountChromeCrashEventsResponseCrashEventCount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1CountChromeCrashEventsResponseCrashEventCount
Returns a new instance of GoogleChromeManagementV1CountChromeCrashEventsResponseCrashEventCount.
869 870 871 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 869 def initialize(**args) update!(**args) end |
Instance Attribute Details
#browser_version ⇒ String
Browser version this is counting.
Corresponds to the JSON property browserVersion
850 851 852 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 850 def browser_version @browser_version end |
#count ⇒ Fixnum
Total count of crash events.
Corresponds to the JSON property count
855 856 857 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 855 def count @count end |
#date ⇒ Google::Apis::ChromemanagementV1::GoogleTypeDate
Represents a whole or partial calendar date, such as a birthday. The time of
day and time zone are either specified elsewhere or are insignificant. The
date is relative to the Gregorian Calendar. This can represent one of the
following: * A full date, with non-zero year, month, and day values. * A month
and day, with a zero year (for example, an anniversary). * A year on its own,
with a zero month and a zero day. * A year and month, with a zero day (for
example, a credit card expiration date). Related types: * google.type.
TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
Corresponds to the JSON property date
867 868 869 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 867 def date @date end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
874 875 876 877 878 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 874 def update!(**args) @browser_version = args[:browser_version] if args.key?(:browser_version) @count = args[:count] if args.key?(:count) @date = args[:date] if args.key?(:date) end |