class Google::Apis::DfareportingV3_4::UserDefinedVariableConfiguration
User Defined Variable configuration.
Attributes
data_type[RW]
Data type for the variable. This is a required field. Corresponds to the JSON property `dataType` @return [String]
report_name[RW]
User-friendly name for the variable which will appear in reports. This is a required field, must be less than 64 characters long, and cannot contain the following characters: “”<>“. Corresponds to the JSON property `reportName` @return [String]
variable_type[RW]
Variable name in the tag. This is a required field. Corresponds to the JSON property `variableType` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 12607 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 12612 def update!(**args) @data_type = args[:data_type] if args.key?(:data_type) @report_name = args[:report_name] if args.key?(:report_name) @variable_type = args[:variable_type] if args.key?(:variable_type) end