Class: Google::Apis::AndroidpublisherV3::SocSelector

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_makeString

The manufacturer of the SoC. Corresponds to the JSON property socMake

Returns:

  • (String)


9590
9591
9592
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9590

def soc_make
  @soc_make
end

#soc_modelString

The model of the SoC. Corresponds to the JSON property socModel

Returns:

  • (String)


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