class Google::Apis::DfareportingV3_4::File::Urls
The URLs where the completed report file can be downloaded.
Attributes
api_url[RW]
The URL for downloading the report data through the API. Corresponds to the JSON property `apiUrl` @return [String]
browser_url[RW]
The URL for downloading the report data through a browser. Corresponds to the JSON property `browserUrl` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 6187 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 6192 def update!(**args) @api_url = args[:api_url] if args.key?(:api_url) @browser_url = args[:browser_url] if args.key?(:browser_url) end