Class: Google::Apis::AdexchangebuyerV1_2::Creative::Correction
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdexchangebuyerV1_2::Creative::Correction
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adexchangebuyer_v1_2/classes.rb,
 generated/google/apis/adexchangebuyer_v1_2/representations.rb,
 generated/google/apis/adexchangebuyer_v1_2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #details  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Additional details about the correction. 
- 
  
    
      #reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of correction that was applied to the creative. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Correction 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Correction. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Correction
Returns a new instance of Correction
| 331 332 333 | # File 'generated/google/apis/adexchangebuyer_v1_2/classes.rb', line 331 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#details ⇒ Array<String>
Additional details about the correction.
Corresponds to the JSON property details
| 324 325 326 | # File 'generated/google/apis/adexchangebuyer_v1_2/classes.rb', line 324 def details @details end | 
#reason ⇒ String
The type of correction that was applied to the creative.
Corresponds to the JSON property reason
| 329 330 331 | # File 'generated/google/apis/adexchangebuyer_v1_2/classes.rb', line 329 def reason @reason end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 336 337 338 339 | # File 'generated/google/apis/adexchangebuyer_v1_2/classes.rb', line 336 def update!(**args) @details = args[:details] if args.key?(:details) @reason = args[:reason] if args.key?(:reason) end |