Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryExternalDisplayData
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryExternalDisplayData
- 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
External display data.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The display name.
-
#edid_version ⇒ String
The EDID version.
-
#refresh_rate ⇒ Fixnum
The refresh rate.
-
#resolution_horizontal ⇒ Fixnum
The horizontal resolution.
-
#resolution_vertical ⇒ Fixnum
The vertical resolution.
-
#serial_number ⇒ Fixnum
The serial number.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryExternalDisplayData
constructor
A new instance of GoogleChromeManagementV1TelemetryExternalDisplayData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryExternalDisplayData
Returns a new instance of GoogleChromeManagementV1TelemetryExternalDisplayData.
3735 3736 3737 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3735 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The display name.
Corresponds to the JSON property displayName
3708 3709 3710 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3708 def display_name @display_name end |
#edid_version ⇒ String
The EDID version.
Corresponds to the JSON property edidVersion
3713 3714 3715 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3713 def edid_version @edid_version end |
#refresh_rate ⇒ Fixnum
The refresh rate.
Corresponds to the JSON property refreshRate
3718 3719 3720 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3718 def refresh_rate @refresh_rate end |
#resolution_horizontal ⇒ Fixnum
The horizontal resolution.
Corresponds to the JSON property resolutionHorizontal
3723 3724 3725 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3723 def resolution_horizontal @resolution_horizontal end |
#resolution_vertical ⇒ Fixnum
The vertical resolution.
Corresponds to the JSON property resolutionVertical
3728 3729 3730 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3728 def resolution_vertical @resolution_vertical end |
#serial_number ⇒ Fixnum
The serial number.
Corresponds to the JSON property serialNumber
3733 3734 3735 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3733 def serial_number @serial_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3740 3741 3742 3743 3744 3745 3746 3747 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3740 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @edid_version = args[:edid_version] if args.key?(:edid_version) @refresh_rate = args[:refresh_rate] if args.key?(:refresh_rate) @resolution_horizontal = args[:resolution_horizontal] if args.key?(:resolution_horizontal) @resolution_vertical = args[:resolution_vertical] if args.key?(:resolution_vertical) @serial_number = args[:serial_number] if args.key?(:serial_number) end |