Class: Google::Apis::AdexchangesellerV1_1::SavedReport
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdexchangesellerV1_1::SavedReport
 
- 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
- 
  
    
      #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
| 720 721 722 | # File 'generated/google/apis/adexchangeseller_v1_1/classes.rb', line 720 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#id ⇒ String
Unique identifier of this saved report.
Corresponds to the JSON property id
| 708 709 710 | # File 'generated/google/apis/adexchangeseller_v1_1/classes.rb', line 708 def id @id end | 
#kind ⇒ String
Kind of resource this is, in this case adexchangeseller#savedReport.
Corresponds to the JSON property kind
| 713 714 715 | # File 'generated/google/apis/adexchangeseller_v1_1/classes.rb', line 713 def kind @kind end | 
#name ⇒ String
This saved report's name.
Corresponds to the JSON property name
| 718 719 720 | # File 'generated/google/apis/adexchangeseller_v1_1/classes.rb', line 718 def name @name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 725 726 727 728 729 | # File 'generated/google/apis/adexchangeseller_v1_1/classes.rb', line 725 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 |