Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TouchScreenInfo
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TouchScreenInfo
- 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
Information on the device touch screen.
Instance Attribute Summary collapse
-
#devices ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TouchScreenDevice>
Output only.
-
#touchpad_library ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1TouchScreenInfo
constructor
A new instance of GoogleChromeManagementV1TouchScreenInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1TouchScreenInfo
Returns a new instance of GoogleChromeManagementV1TouchScreenInfo.
3850 3851 3852 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3850 def initialize(**args) update!(**args) end |
Instance Attribute Details
#devices ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TouchScreenDevice>
Output only. List of the internal touch screen devices.
Corresponds to the JSON property devices
3843 3844 3845 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3843 def devices @devices end |
#touchpad_library ⇒ String
Output only. Touchpad library name used by the input stack.
Corresponds to the JSON property touchpadLibrary
3848 3849 3850 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3848 def touchpad_library @touchpad_library end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3855 3856 3857 3858 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3855 def update!(**args) @devices = args[:devices] if args.key?(:devices) @touchpad_library = args[:touchpad_library] if args.key?(:touchpad_library) end |