Class: Google::Apis::AdexchangesellerV1_1::Metadata
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdexchangesellerV1_1::Metadata
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adexchangeseller_v1_1/classes.rb,
 generated/google/apis/adexchangeseller_v1_1/representations.rb,
 generated/google/apis/adexchangeseller_v1_1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #items  ⇒ Array<Google::Apis::AdexchangesellerV1_1::ReportingMetadataEntry> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property items.
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Kind of list this is, in this case adexchangeseller#metadata. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Metadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Metadata. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Metadata
Returns a new instance of Metadata
| 436 437 438 | # File 'generated/google/apis/adexchangeseller_v1_1/classes.rb', line 436 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#items ⇒ Array<Google::Apis::AdexchangesellerV1_1::ReportingMetadataEntry>
Corresponds to the JSON property items
| 429 430 431 | # File 'generated/google/apis/adexchangeseller_v1_1/classes.rb', line 429 def items @items end | 
#kind ⇒ String
Kind of list this is, in this case adexchangeseller#metadata.
Corresponds to the JSON property kind
| 434 435 436 | # File 'generated/google/apis/adexchangeseller_v1_1/classes.rb', line 434 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 441 442 443 444 | # File 'generated/google/apis/adexchangeseller_v1_1/classes.rb', line 441 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |