class Google::Apis::DisplayvideoV1::ThirdPartyUrl

Tracking URLs from third parties to track interactions with an audio or a video creative.

Attributes

type[RW]

The type of interaction needs to be tracked by the tracking URL Corresponds to the JSON property `type` @return [String]

url[RW]

Tracking URL used to track the interaction. Provide a URL with optional path or query string, beginning with `https:`. For example, www.example.com/ path Corresponds to the JSON property `url` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/displayvideo_v1/classes.rb, line 9240
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/displayvideo_v1/classes.rb, line 9245
def update!(**args)
  @type = args[:type] if args.key?(:type)
  @url = args[:url] if args.key?(:url)
end