Class: Google::Apis::AdexchangesellerV1::SavedReport
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdexchangesellerV1::SavedReport
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adexchangeseller_v1/classes.rb,
 generated/google/apis/adexchangeseller_v1/representations.rb,
 generated/google/apis/adexchangeseller_v1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Unique identifier of this saved report. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Kind of resource this is, in this case adexchangeseller#savedReport. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This saved report's name. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SavedReport 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SavedReport. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SavedReport
Returns a new instance of SavedReport
| 435 436 437 | # File 'generated/google/apis/adexchangeseller_v1/classes.rb', line 435 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#id ⇒ String
Unique identifier of this saved report.
Corresponds to the JSON property id
| 423 424 425 | # File 'generated/google/apis/adexchangeseller_v1/classes.rb', line 423 def id @id end | 
#kind ⇒ String
Kind of resource this is, in this case adexchangeseller#savedReport.
Corresponds to the JSON property kind
| 428 429 430 | # File 'generated/google/apis/adexchangeseller_v1/classes.rb', line 428 def kind @kind end | 
#name ⇒ String
This saved report's name.
Corresponds to the JSON property name
| 433 434 435 | # File 'generated/google/apis/adexchangeseller_v1/classes.rb', line 433 def name @name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 440 441 442 443 444 | # File 'generated/google/apis/adexchangeseller_v1/classes.rb', line 440 def update!(**args) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) end |