class Google::Apis::DfareportingV3_4::UniversalAdId
A Universal Ad
ID as per the VAST 4.0 spec. Applicable to the following creative types: INSTREAM_AUDIO, INSTREAM_VIDEO and VPAID.
Attributes
registry[RW]
Registry used for the Ad
ID value. Corresponds to the JSON property `registry` @return [String]
value[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 12575 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 12580 def update!(**args) @registry = args[:registry] if args.key?(:registry) @value = args[:value] if args.key?(:value) end