Class: Google::Apis::DfareportingV2_8::ThirdPartyTrackingUrl
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV2_8::ThirdPartyTrackingUrl
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_8/classes.rb,
 generated/google/apis/dfareporting_v2_8/representations.rb,
 generated/google/apis/dfareporting_v2_8/representations.rb
Overview
Third-party Tracking URL.
Instance Attribute Summary collapse
- 
  
    
      #third_party_url_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Third-party URL type for in-stream video creatives. 
- 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    URL for the specified third-party URL type. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ThirdPartyTrackingUrl 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ThirdPartyTrackingUrl. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ThirdPartyTrackingUrl
Returns a new instance of ThirdPartyTrackingUrl
| 11483 11484 11485 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 11483 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#third_party_url_type ⇒ String
Third-party URL type for in-stream video creatives.
Corresponds to the JSON property thirdPartyUrlType
| 11476 11477 11478 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 11476 def third_party_url_type @third_party_url_type end | 
#url ⇒ String
URL for the specified third-party URL type.
Corresponds to the JSON property url
| 11481 11482 11483 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 11481 def url @url end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 11488 11489 11490 11491 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 11488 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 |