class Google::Apis::DfareportingV3_5::ThirdPartyTrackingUrl

Third-party Tracking URL.

Attributes

third_party_url_type[RW]

Third-party URL type for in-stream video and in-stream audio creatives. Corresponds to the JSON property `thirdPartyUrlType` @return [String]

url[RW]

URL for the specified third-party URL type. Corresponds to the JSON property `url` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 12179
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_5/classes.rb, line 12184
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