Class: Google::Apis::DisplayvideoV1::ThirdPartyUrl
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::ThirdPartyUrl
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/displayvideo_v1/classes.rb,
generated/google/apis/displayvideo_v1/representations.rb,
generated/google/apis/displayvideo_v1/representations.rb
Overview
Tracking URLs from third parties to track interactions with an audio or a video creative.
Instance Attribute Summary collapse
-
#type ⇒ String
The type of interaction needs to be tracked by the tracking URL Corresponds to the JSON property
type
. -
#url ⇒ String
Tracking URL used to track the interaction.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ThirdPartyUrl
constructor
A new instance of ThirdPartyUrl.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ThirdPartyUrl
Returns a new instance of ThirdPartyUrl.
6956 6957 6958 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6956 def initialize(**args) update!(**args) end |
Instance Attribute Details
#type ⇒ String
The type of interaction needs to be tracked by the tracking URL
Corresponds to the JSON property type
6947 6948 6949 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6947 def type @type end |
#url ⇒ String
Tracking URL used to track the interaction.
Provide a URL with optional path or query string, beginning with https:
.
For example, https://www.example.com/path
Corresponds to the JSON property url
6954 6955 6956 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6954 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6961 6962 6963 6964 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6961 def update!(**args) @type = args[:type] if args.key?(:type) @url = args[:url] if args.key?(:url) end |