Class: Google::Apis::AdexchangebuyerV1_4::Creative::Correction
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdexchangebuyerV1_4::Creative::Correction
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adexchangebuyer_v1_4/classes.rb,
 generated/google/apis/adexchangebuyer_v1_4/representations.rb,
 generated/google/apis/adexchangebuyer_v1_4/representations.rb
Defined Under Namespace
Classes: Context
Instance Attribute Summary collapse
- 
  
    
      #contexts  ⇒ Array<Google::Apis::AdexchangebuyerV1_4::Creative::Correction::Context> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    All known serving contexts containing serving status information. 
- 
  
    
      #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
| 719 720 721 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 719 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#contexts ⇒ Array<Google::Apis::AdexchangebuyerV1_4::Creative::Correction::Context>
All known serving contexts containing serving status information.
Corresponds to the JSON property contexts
| 707 708 709 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 707 def contexts @contexts end | 
#details ⇒ Array<String>
Additional details about the correction.
Corresponds to the JSON property details
| 712 713 714 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 712 def details @details end | 
#reason ⇒ String
The type of correction that was applied to the creative.
Corresponds to the JSON property reason
| 717 718 719 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 717 def reason @reason end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 724 725 726 727 728 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 724 def update!(**args) @contexts = args[:contexts] if args.key?(:contexts) @details = args[:details] if args.key?(:details) @reason = args[:reason] if args.key?(:reason) end |