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.
9597 9598 9599 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9597 def initialize(**args) update!(**args) end |
Instance Attribute Details
#soc_make ⇒ String
The manufacturer of the SoC.
Corresponds to the JSON property socMake
9590 9591 9592 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9590 def soc_make @soc_make end |
#soc_model ⇒ String
The model of the SoC.
Corresponds to the JSON property socModel
9595 9596 9597 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9595 def soc_model @soc_model end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9602 9603 9604 9605 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9602 def update!(**args) @soc_make = args[:soc_make] if args.key?(:soc_make) @soc_model = args[:soc_model] if args.key?(:soc_model) end |