Class: Google::Apis::AndroidpublisherV3::SocSelector
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::SocSelector
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb
Overview
Defines a SOC selector for a device. This will match any device whose SoC ( System on Chip) matches all fields in the selector.
Instance Attribute Summary collapse
-
#soc_make ⇒ String
The manufacturer of the SoC.
-
#soc_model ⇒ String
The model of the SoC.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SocSelector
constructor
A new instance of SocSelector.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SocSelector
Returns a new instance of SocSelector.
9849 9850 9851 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9849 def initialize(**args) update!(**args) end |
Instance Attribute Details
#soc_make ⇒ String
The manufacturer of the SoC.
Corresponds to the JSON property socMake
9842 9843 9844 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9842 def soc_make @soc_make end |
#soc_model ⇒ String
The model of the SoC.
Corresponds to the JSON property socModel
9847 9848 9849 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9847 def soc_model @soc_model end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9854 9855 9856 9857 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9854 def update!(**args) @soc_make = args[:soc_make] if args.key?(:soc_make) @soc_model = args[:soc_model] if args.key?(:soc_model) end |