Class: Google::Apis::DfareportingV3_0::CreativeFieldValue
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV3_0::CreativeFieldValue
 
- 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
Contains properties of a creative field value.
Instance Attribute Summary collapse
- 
  
    
      #id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ID of this creative field value. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Value of this creative field value. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CreativeFieldValue 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CreativeFieldValue. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CreativeFieldValue
Returns a new instance of CreativeFieldValue
| 4140 4141 4142 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4140 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#id ⇒ Fixnum
ID of this creative field value. This is a read-only, auto-generated field.
Corresponds to the JSON property id
| 4126 4127 4128 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4126 def id @id end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#creativeFieldValue".
Corresponds to the JSON property kind
| 4132 4133 4134 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4132 def kind @kind end | 
#value ⇒ String
Value of this creative field value. It needs to be less than 256 characters in
length and unique per creative field.
Corresponds to the JSON property value
| 4138 4139 4140 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4138 def value @value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4145 4146 4147 4148 4149 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4145 def update!(**args) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @value = args[:value] if args.key?(:value) end |