Class: Google::Apis::ContentV2::AccountStatusProducts
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2::AccountStatusProducts
 
 
- Defined in:
 - generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #channel  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The channel the data applies to.
 - 
  
    
      #country  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The country the data applies to.
 - 
  
    
      #destination  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The destination the data applies to.
 - 
  
    
      #item_level_issues  ⇒ Array<Google::Apis::ContentV2::AccountStatusItemLevelIssue> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of item-level issues.
 - 
  
    
      #statistics  ⇒ Google::Apis::ContentV2::AccountStatusStatistics 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Aggregated product statistics.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AccountStatusProducts 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of AccountStatusProducts.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AccountStatusProducts
Returns a new instance of AccountStatusProducts
      630 631 632  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 630 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#channel ⇒ String
The channel the data applies to.
Corresponds to the JSON property channel
      608 609 610  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 608 def channel @channel end  | 
  
#country ⇒ String
The country the data applies to.
Corresponds to the JSON property country
      613 614 615  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 613 def country @country end  | 
  
#destination ⇒ String
The destination the data applies to.
Corresponds to the JSON property destination
      618 619 620  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 618 def destination @destination end  | 
  
#item_level_issues ⇒ Array<Google::Apis::ContentV2::AccountStatusItemLevelIssue>
List of item-level issues.
Corresponds to the JSON property itemLevelIssues
      623 624 625  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 623 def item_level_issues @item_level_issues end  | 
  
#statistics ⇒ Google::Apis::ContentV2::AccountStatusStatistics
Aggregated product statistics.
Corresponds to the JSON property statistics
      628 629 630  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 628 def statistics @statistics end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      635 636 637 638 639 640 641  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 635 def update!(**args) @channel = args[:channel] if args.key?(:channel) @country = args[:country] if args.key?(:country) @destination = args[:destination] if args.key?(:destination) @item_level_issues = args[:item_level_issues] if args.key?(:item_level_issues) @statistics = args[:statistics] if args.key?(:statistics) end  |