Class: Google::Apis::DfareportingV3_0::UniversalAdId
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_0::UniversalAdId
 
 
- 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
A Universal Ad ID as per the VAST 4.0 spec. Applicable to the following creative types: INSTREAM_VIDEO and VPAID.
Instance Attribute Summary collapse
- 
  
    
      #registry  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Registry used for the Ad ID value.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
ID value for this creative.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UniversalAdId 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of UniversalAdId.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UniversalAdId
Returns a new instance of UniversalAdId
      11609 11610 11611  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 11609 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#registry ⇒ String
Registry used for the Ad ID value.
Corresponds to the JSON property registry
      11600 11601 11602  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 11600 def registry @registry end  | 
  
#value ⇒ String
ID value for this creative. Only alphanumeric characters and the following
symbols are valid: "_/-". Maximum length is 64 characters. Read only when
registry is DCM.
Corresponds to the JSON property value
      11607 11608 11609  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 11607 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      11614 11615 11616 11617  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 11614 def update!(**args) @registry = args[:registry] if args.key?(:registry) @value = args[:value] if args.key?(:value) end  |