class Google::Apis::DfareportingV2_1::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 generated/google/apis/dfareporting_v2_1/classes.rb, line 10434 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/dfareporting_v2_1/classes.rb, line 10439 def update!(**args) @data_type = args[:data_type] unless args[:data_type].nil? @report_name = args[:report_name] unless args[:report_name].nil? @variable_type = args[:variable_type] unless args[:variable_type].nil? end