Class: Google::Apis::DfareportingV2_6::ThirdPartyTrackingUrl

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

Overview

Third-party Tracking URL.

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) ⇒ ThirdPartyTrackingUrl

Returns a new instance of ThirdPartyTrackingUrl.



11217
11218
11219
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 11217

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

Instance Attribute Details

#third_party_url_typeString

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

Returns:

  • (String)


11210
11211
11212
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 11210

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)


11215
11216
11217
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 11215

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11222
11223
11224
11225
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 11222

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