Class: Google::Apis::AndroidpublisherV3::TargetingInfo
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidpublisherV3::TargetingInfo
 
 
- 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
Targeting information about the generated apks.
Instance Attribute Summary collapse
- 
  
    
      #asset_slice_set  ⇒ Array<Google::Apis::AndroidpublisherV3::AssetSliceSet> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of created asset slices.
 - 
  
    
      #package_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The package name of this app.
 - 
  
    
      #variant  ⇒ Array<Google::Apis::AndroidpublisherV3::SplitApkVariant> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of the created variants.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TargetingInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of TargetingInfo.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ TargetingInfo
Returns a new instance of TargetingInfo.
      6416 6417 6418  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6416 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#asset_slice_set ⇒ Array<Google::Apis::AndroidpublisherV3::AssetSliceSet>
List of created asset slices.
Corresponds to the JSON property assetSliceSet
      6404 6405 6406  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6404 def asset_slice_set @asset_slice_set end  | 
  
#package_name ⇒ String
The package name of this app.
Corresponds to the JSON property packageName
      6409 6410 6411  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6409 def package_name @package_name end  | 
  
#variant ⇒ Array<Google::Apis::AndroidpublisherV3::SplitApkVariant>
List of the created variants.
Corresponds to the JSON property variant
      6414 6415 6416  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6414 def variant @variant end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6421 6422 6423 6424 6425  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6421 def update!(**args) @asset_slice_set = args[:asset_slice_set] if args.key?(:asset_slice_set) @package_name = args[:package_name] if args.key?(:package_name) @variant = args[:variant] if args.key?(:variant) end  |