Class: Google::Apis::DfareportingV3_0::UserDefinedVariableConfiguration
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV3_0::UserDefinedVariableConfiguration
 
- 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
User Defined Variable configuration.
Instance Attribute Summary collapse
- 
  
    
      #data_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Data type for the variable. 
- 
  
    
      #report_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    User-friendly name for the variable which will appear in reports. 
- 
  
    
      #variable_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Variable name in the tag. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UserDefinedVariableConfiguration 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of UserDefinedVariableConfiguration. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UserDefinedVariableConfiguration
Returns a new instance of UserDefinedVariableConfiguration
| 11639 11640 11641 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 11639 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#data_type ⇒ String
Data type for the variable. This is a required field.
Corresponds to the JSON property dataType
| 11625 11626 11627 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 11625 def data_type @data_type end | 
#report_name ⇒ String
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
| 11632 11633 11634 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 11632 def report_name @report_name end | 
#variable_type ⇒ String
Variable name in the tag. This is a required field.
Corresponds to the JSON property variableType
| 11637 11638 11639 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 11637 def variable_type @variable_type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 11644 11645 11646 11647 11648 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 11644 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 |