class Google::Apis::DfareportingV3_4::CustomVariable
Custom variable.
Attributes
index[RW]
The index of the custom variable. Corresponds to the JSON property `index` @return [Fixnum]
kind[RW]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#customVariable”. Corresponds to the JSON property `kind` @return [String]
value[RW]
The value of the custom variable. The length of string must not exceed 50 characters. 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 5030 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 5035 def update!(**args) @index = args[:index] if args.key?(:index) @kind = args[:kind] if args.key?(:kind) @value = args[:value] if args.key?(:value) end