Class: Google::Apis::DfareportingV2_8::File::Urls
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV2_8::File::Urls
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v2_8/classes.rb,
generated/google/apis/dfareporting_v2_8/representations.rb,
generated/google/apis/dfareporting_v2_8/representations.rb 
Overview
The URLs where the completed report file can be downloaded.
Instance Attribute Summary collapse
- 
  
    
      #api_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URL for downloading the report data through the API.
 - 
  
    
      #browser_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URL for downloading the report data through a browser.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Urls 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Urls.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Urls
Returns a new instance of Urls
      5687 5688 5689  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 5687 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#api_url ⇒ String
The URL for downloading the report data through the API.
Corresponds to the JSON property apiUrl
      5680 5681 5682  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 5680 def api_url @api_url end  | 
  
#browser_url ⇒ String
The URL for downloading the report data through a browser.
Corresponds to the JSON property browserUrl
      5685 5686 5687  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 5685 def browser_url @browser_url end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5692 5693 5694 5695  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 5692 def update!(**args) @api_url = args[:api_url] if args.key?(:api_url) @browser_url = args[:browser_url] if args.key?(:browser_url) end  |