Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryExternalDisplayData

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

External display data.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryExternalDisplayData

Returns a new instance of GoogleChromeManagementV1TelemetryExternalDisplayData.



3742
3743
3744
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3742

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

Instance Attribute Details

#display_nameString

The display name. Corresponds to the JSON property displayName

Returns:

  • (String)


3715
3716
3717
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3715

def display_name
  @display_name
end

#edid_versionString

The EDID version. Corresponds to the JSON property edidVersion

Returns:

  • (String)


3720
3721
3722
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3720

def edid_version
  @edid_version
end

#refresh_rateFixnum

The refresh rate. Corresponds to the JSON property refreshRate

Returns:

  • (Fixnum)


3725
3726
3727
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3725

def refresh_rate
  @refresh_rate
end

#resolution_horizontalFixnum

The horizontal resolution. Corresponds to the JSON property resolutionHorizontal

Returns:

  • (Fixnum)


3730
3731
3732
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3730

def resolution_horizontal
  @resolution_horizontal
end

#resolution_verticalFixnum

The vertical resolution. Corresponds to the JSON property resolutionVertical

Returns:

  • (Fixnum)


3735
3736
3737
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3735

def resolution_vertical
  @resolution_vertical
end

#serial_numberFixnum

The serial number. Corresponds to the JSON property serialNumber

Returns:

  • (Fixnum)


3740
3741
3742
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3740

def serial_number
  @serial_number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3747
3748
3749
3750
3751
3752
3753
3754
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3747

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