Class: Google::Apis::DfareportingV5::ThirdPartyTrackingUrl

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

Overview

Third-party Tracking URL.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ThirdPartyTrackingUrl

Returns a new instance of ThirdPartyTrackingUrl.



13107
13108
13109
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13107

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

Instance Attribute Details

#third_party_url_typeString

Third-party URL type for in-stream video and in-stream audio creatives. Corresponds to the JSON property thirdPartyUrlType

Returns:

  • (String)


13100
13101
13102
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13100

def third_party_url_type
  @third_party_url_type
end

#urlString

URL for the specified third-party URL type. Corresponds to the JSON property url

Returns:

  • (String)


13105
13106
13107
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13105

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13112
13113
13114
13115
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13112

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