Class: Google::Apis::DfareportingV2_3::File::Urls

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v2_3/classes.rb,
generated/google/apis/dfareporting_v2_3/representations.rb,
generated/google/apis/dfareporting_v2_3/representations.rb

Overview

The URLs where the completed report file can be downloaded.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Urls

Returns a new instance of Urls.



5008
5009
5010
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5008

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#api_urlString

The URL for downloading the report data through the API. Corresponds to the JSON property apiUrl

Returns:

  • (String)


5001
5002
5003
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5001

def api_url
  @api_url
end

#browser_urlString

The URL for downloading the report data through a browser. Corresponds to the JSON property browserUrl

Returns:

  • (String)


5006
5007
5008
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5006

def browser_url
  @browser_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5013
5014
5015
5016
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5013

def update!(**args)
  @api_url = args[:api_url] if args.key?(:api_url)
  @browser_url = args[:browser_url] if args.key?(:browser_url)
end