Class: Google::Apis::DfareportingV3_0::ThirdPartyTrackingUrl
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_0::ThirdPartyTrackingUrl
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_0/classes.rb,
generated/google/apis/dfareporting_v3_0/representations.rb,
generated/google/apis/dfareporting_v3_0/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
      11554 11555 11556  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 11554 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
      11547 11548 11549  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 11547 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
      11552 11553 11554  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 11552 def url @url end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      11559 11560 11561 11562  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 11559 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  |